@seamapi/types 1.747.0 → 1.749.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +185 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +801 -537
- package/dist/index.cjs +185 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +81 -0
- package/lib/seam/connect/models/access-grants/access-method.js +16 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.js +3 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/batch.d.ts +120 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +140 -10
- package/lib/seam/connect/openapi.js +169 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +455 -383
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +21 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +194 -16
- package/src/lib/seam/connect/route-types.ts +695 -256
|
@@ -227,13 +227,18 @@ export type Routes = {
|
|
|
227
227
|
is_issued?: boolean | undefined
|
|
228
228
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
229
229
|
issued_at?: (string | undefined) | null
|
|
230
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
231
|
-
access_method:
|
|
230
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
231
|
+
access_method:
|
|
232
|
+
| 'code'
|
|
233
|
+
| 'card'
|
|
234
|
+
| 'mobile_key'
|
|
235
|
+
| 'cloud_key'
|
|
232
236
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
233
237
|
external_type?:
|
|
234
238
|
| (
|
|
235
239
|
| 'pti_card'
|
|
236
240
|
| 'brivo_credential'
|
|
241
|
+
| 'brivo_digital_credential'
|
|
237
242
|
| 'hid_credential'
|
|
238
243
|
| 'visionline_card'
|
|
239
244
|
| 'salto_ks_credential'
|
|
@@ -388,13 +393,18 @@ export type Routes = {
|
|
|
388
393
|
is_issued?: boolean | undefined
|
|
389
394
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
390
395
|
issued_at?: (string | undefined) | null
|
|
391
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
392
|
-
access_method:
|
|
396
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
397
|
+
access_method:
|
|
398
|
+
| 'code'
|
|
399
|
+
| 'card'
|
|
400
|
+
| 'mobile_key'
|
|
401
|
+
| 'cloud_key'
|
|
393
402
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
394
403
|
external_type?:
|
|
395
404
|
| (
|
|
396
405
|
| 'pti_card'
|
|
397
406
|
| 'brivo_credential'
|
|
407
|
+
| 'brivo_digital_credential'
|
|
398
408
|
| 'hid_credential'
|
|
399
409
|
| 'visionline_card'
|
|
400
410
|
| 'salto_ks_credential'
|
|
@@ -617,13 +627,14 @@ export type Routes = {
|
|
|
617
627
|
is_issued?: boolean | undefined
|
|
618
628
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
619
629
|
issued_at?: (string | undefined) | null
|
|
620
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
621
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
630
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
631
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
622
632
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
623
633
|
external_type?:
|
|
624
634
|
| (
|
|
625
635
|
| 'pti_card'
|
|
626
636
|
| 'brivo_credential'
|
|
637
|
+
| 'brivo_digital_credential'
|
|
627
638
|
| 'hid_credential'
|
|
628
639
|
| 'visionline_card'
|
|
629
640
|
| 'salto_ks_credential'
|
|
@@ -776,13 +787,14 @@ export type Routes = {
|
|
|
776
787
|
is_issued?: boolean | undefined
|
|
777
788
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
778
789
|
issued_at?: (string | undefined) | null
|
|
779
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
780
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
790
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
791
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
781
792
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
782
793
|
external_type?:
|
|
783
794
|
| (
|
|
784
795
|
| 'pti_card'
|
|
785
796
|
| 'brivo_credential'
|
|
797
|
+
| 'brivo_digital_credential'
|
|
786
798
|
| 'hid_credential'
|
|
787
799
|
| 'visionline_card'
|
|
788
800
|
| 'salto_ks_credential'
|
|
@@ -2857,13 +2869,18 @@ export type Routes = {
|
|
|
2857
2869
|
is_issued?: boolean | undefined
|
|
2858
2870
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
2859
2871
|
issued_at?: (string | undefined) | null
|
|
2860
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
2861
|
-
access_method:
|
|
2872
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
2873
|
+
access_method:
|
|
2874
|
+
| 'code'
|
|
2875
|
+
| 'card'
|
|
2876
|
+
| 'mobile_key'
|
|
2877
|
+
| 'cloud_key'
|
|
2862
2878
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
2863
2879
|
external_type?:
|
|
2864
2880
|
| (
|
|
2865
2881
|
| 'pti_card'
|
|
2866
2882
|
| 'brivo_credential'
|
|
2883
|
+
| 'brivo_digital_credential'
|
|
2867
2884
|
| 'hid_credential'
|
|
2868
2885
|
| 'visionline_card'
|
|
2869
2886
|
| 'salto_ks_credential'
|
|
@@ -3018,13 +3035,18 @@ export type Routes = {
|
|
|
3018
3035
|
is_issued?: boolean | undefined
|
|
3019
3036
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
3020
3037
|
issued_at?: (string | undefined) | null
|
|
3021
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
3022
|
-
access_method:
|
|
3038
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
3039
|
+
access_method:
|
|
3040
|
+
| 'code'
|
|
3041
|
+
| 'card'
|
|
3042
|
+
| 'mobile_key'
|
|
3043
|
+
| 'cloud_key'
|
|
3023
3044
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3024
3045
|
external_type?:
|
|
3025
3046
|
| (
|
|
3026
3047
|
| 'pti_card'
|
|
3027
3048
|
| 'brivo_credential'
|
|
3049
|
+
| 'brivo_digital_credential'
|
|
3028
3050
|
| 'hid_credential'
|
|
3029
3051
|
| 'visionline_card'
|
|
3030
3052
|
| 'salto_ks_credential'
|
|
@@ -3247,13 +3269,14 @@ export type Routes = {
|
|
|
3247
3269
|
is_issued?: boolean | undefined
|
|
3248
3270
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
3249
3271
|
issued_at?: (string | undefined) | null
|
|
3250
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
3251
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
3272
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
3273
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
3252
3274
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3253
3275
|
external_type?:
|
|
3254
3276
|
| (
|
|
3255
3277
|
| 'pti_card'
|
|
3256
3278
|
| 'brivo_credential'
|
|
3279
|
+
| 'brivo_digital_credential'
|
|
3257
3280
|
| 'hid_credential'
|
|
3258
3281
|
| 'visionline_card'
|
|
3259
3282
|
| 'salto_ks_credential'
|
|
@@ -3406,13 +3429,14 @@ export type Routes = {
|
|
|
3406
3429
|
is_issued?: boolean | undefined
|
|
3407
3430
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
3408
3431
|
issued_at?: (string | undefined) | null
|
|
3409
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
3410
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
3432
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
3433
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
3411
3434
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3412
3435
|
external_type?:
|
|
3413
3436
|
| (
|
|
3414
3437
|
| 'pti_card'
|
|
3415
3438
|
| 'brivo_credential'
|
|
3439
|
+
| 'brivo_digital_credential'
|
|
3416
3440
|
| 'hid_credential'
|
|
3417
3441
|
| 'visionline_card'
|
|
3418
3442
|
| 'salto_ks_credential'
|
|
@@ -7363,13 +7387,18 @@ export type Routes = {
|
|
|
7363
7387
|
is_issued?: boolean | undefined
|
|
7364
7388
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
7365
7389
|
issued_at?: (string | undefined) | null
|
|
7366
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
7367
|
-
access_method:
|
|
7390
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
7391
|
+
access_method:
|
|
7392
|
+
| 'code'
|
|
7393
|
+
| 'card'
|
|
7394
|
+
| 'mobile_key'
|
|
7395
|
+
| 'cloud_key'
|
|
7368
7396
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7369
7397
|
external_type?:
|
|
7370
7398
|
| (
|
|
7371
7399
|
| 'pti_card'
|
|
7372
7400
|
| 'brivo_credential'
|
|
7401
|
+
| 'brivo_digital_credential'
|
|
7373
7402
|
| 'hid_credential'
|
|
7374
7403
|
| 'visionline_card'
|
|
7375
7404
|
| 'salto_ks_credential'
|
|
@@ -7524,13 +7553,18 @@ export type Routes = {
|
|
|
7524
7553
|
is_issued?: boolean | undefined
|
|
7525
7554
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
7526
7555
|
issued_at?: (string | undefined) | null
|
|
7527
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
7528
|
-
access_method:
|
|
7556
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
7557
|
+
access_method:
|
|
7558
|
+
| 'code'
|
|
7559
|
+
| 'card'
|
|
7560
|
+
| 'mobile_key'
|
|
7561
|
+
| 'cloud_key'
|
|
7529
7562
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7530
7563
|
external_type?:
|
|
7531
7564
|
| (
|
|
7532
7565
|
| 'pti_card'
|
|
7533
7566
|
| 'brivo_credential'
|
|
7567
|
+
| 'brivo_digital_credential'
|
|
7534
7568
|
| 'hid_credential'
|
|
7535
7569
|
| 'visionline_card'
|
|
7536
7570
|
| 'salto_ks_credential'
|
|
@@ -7753,13 +7787,14 @@ export type Routes = {
|
|
|
7753
7787
|
is_issued?: boolean | undefined
|
|
7754
7788
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
7755
7789
|
issued_at?: (string | undefined) | null
|
|
7756
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
7757
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
7790
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
7791
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
7758
7792
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7759
7793
|
external_type?:
|
|
7760
7794
|
| (
|
|
7761
7795
|
| 'pti_card'
|
|
7762
7796
|
| 'brivo_credential'
|
|
7797
|
+
| 'brivo_digital_credential'
|
|
7763
7798
|
| 'hid_credential'
|
|
7764
7799
|
| 'visionline_card'
|
|
7765
7800
|
| 'salto_ks_credential'
|
|
@@ -7912,13 +7947,14 @@ export type Routes = {
|
|
|
7912
7947
|
is_issued?: boolean | undefined
|
|
7913
7948
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
7914
7949
|
issued_at?: (string | undefined) | null
|
|
7915
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
7916
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
7950
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
7951
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
7917
7952
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7918
7953
|
external_type?:
|
|
7919
7954
|
| (
|
|
7920
7955
|
| 'pti_card'
|
|
7921
7956
|
| 'brivo_credential'
|
|
7957
|
+
| 'brivo_digital_credential'
|
|
7922
7958
|
| 'hid_credential'
|
|
7923
7959
|
| 'visionline_card'
|
|
7924
7960
|
| 'salto_ks_credential'
|
|
@@ -10025,13 +10061,18 @@ export type Routes = {
|
|
|
10025
10061
|
is_issued?: boolean | undefined
|
|
10026
10062
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
10027
10063
|
issued_at?: (string | undefined) | null
|
|
10028
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
10029
|
-
access_method:
|
|
10064
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10065
|
+
access_method:
|
|
10066
|
+
| 'code'
|
|
10067
|
+
| 'card'
|
|
10068
|
+
| 'mobile_key'
|
|
10069
|
+
| 'cloud_key'
|
|
10030
10070
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10031
10071
|
external_type?:
|
|
10032
10072
|
| (
|
|
10033
10073
|
| 'pti_card'
|
|
10034
10074
|
| 'brivo_credential'
|
|
10075
|
+
| 'brivo_digital_credential'
|
|
10035
10076
|
| 'hid_credential'
|
|
10036
10077
|
| 'visionline_card'
|
|
10037
10078
|
| 'salto_ks_credential'
|
|
@@ -10186,13 +10227,18 @@ export type Routes = {
|
|
|
10186
10227
|
is_issued?: boolean | undefined
|
|
10187
10228
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
10188
10229
|
issued_at?: (string | undefined) | null
|
|
10189
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
10190
|
-
access_method:
|
|
10230
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10231
|
+
access_method:
|
|
10232
|
+
| 'code'
|
|
10233
|
+
| 'card'
|
|
10234
|
+
| 'mobile_key'
|
|
10235
|
+
| 'cloud_key'
|
|
10191
10236
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10192
10237
|
external_type?:
|
|
10193
10238
|
| (
|
|
10194
10239
|
| 'pti_card'
|
|
10195
10240
|
| 'brivo_credential'
|
|
10241
|
+
| 'brivo_digital_credential'
|
|
10196
10242
|
| 'hid_credential'
|
|
10197
10243
|
| 'visionline_card'
|
|
10198
10244
|
| 'salto_ks_credential'
|
|
@@ -10415,13 +10461,14 @@ export type Routes = {
|
|
|
10415
10461
|
is_issued?: boolean | undefined
|
|
10416
10462
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
10417
10463
|
issued_at?: (string | undefined) | null
|
|
10418
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
10419
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
10464
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10465
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
10420
10466
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10421
10467
|
external_type?:
|
|
10422
10468
|
| (
|
|
10423
10469
|
| 'pti_card'
|
|
10424
10470
|
| 'brivo_credential'
|
|
10471
|
+
| 'brivo_digital_credential'
|
|
10425
10472
|
| 'hid_credential'
|
|
10426
10473
|
| 'visionline_card'
|
|
10427
10474
|
| 'salto_ks_credential'
|
|
@@ -10574,13 +10621,14 @@ export type Routes = {
|
|
|
10574
10621
|
is_issued?: boolean | undefined
|
|
10575
10622
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
10576
10623
|
issued_at?: (string | undefined) | null
|
|
10577
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
10578
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
10624
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10625
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
10579
10626
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10580
10627
|
external_type?:
|
|
10581
10628
|
| (
|
|
10582
10629
|
| 'pti_card'
|
|
10583
10630
|
| 'brivo_credential'
|
|
10631
|
+
| 'brivo_digital_credential'
|
|
10584
10632
|
| 'hid_credential'
|
|
10585
10633
|
| 'visionline_card'
|
|
10586
10634
|
| 'salto_ks_credential'
|
|
@@ -14254,6 +14302,16 @@ export type Routes = {
|
|
|
14254
14302
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14255
14303
|
warning_code: 'updating_access_times'
|
|
14256
14304
|
}
|
|
14305
|
+
| {
|
|
14306
|
+
/** Date and time at which Seam created the warning. */
|
|
14307
|
+
created_at: string
|
|
14308
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14309
|
+
message: string
|
|
14310
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14311
|
+
warning_code: 'pulled_backup_access_code'
|
|
14312
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
14313
|
+
original_access_method_id?: string | undefined
|
|
14314
|
+
}
|
|
14257
14315
|
)[]
|
|
14258
14316
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
14259
14317
|
pending_mutations: (
|
|
@@ -15329,13 +15387,18 @@ export type Routes = {
|
|
|
15329
15387
|
is_issued?: boolean | undefined
|
|
15330
15388
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15331
15389
|
issued_at?: (string | undefined) | null
|
|
15332
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15333
|
-
access_method:
|
|
15390
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15391
|
+
access_method:
|
|
15392
|
+
| 'code'
|
|
15393
|
+
| 'card'
|
|
15394
|
+
| 'mobile_key'
|
|
15395
|
+
| 'cloud_key'
|
|
15334
15396
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
15335
15397
|
external_type?:
|
|
15336
15398
|
| (
|
|
15337
15399
|
| 'pti_card'
|
|
15338
15400
|
| 'brivo_credential'
|
|
15401
|
+
| 'brivo_digital_credential'
|
|
15339
15402
|
| 'hid_credential'
|
|
15340
15403
|
| 'visionline_card'
|
|
15341
15404
|
| 'salto_ks_credential'
|
|
@@ -15490,13 +15553,18 @@ export type Routes = {
|
|
|
15490
15553
|
is_issued?: boolean | undefined
|
|
15491
15554
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15492
15555
|
issued_at?: (string | undefined) | null
|
|
15493
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15494
|
-
access_method:
|
|
15556
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15557
|
+
access_method:
|
|
15558
|
+
| 'code'
|
|
15559
|
+
| 'card'
|
|
15560
|
+
| 'mobile_key'
|
|
15561
|
+
| 'cloud_key'
|
|
15495
15562
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
15496
15563
|
external_type?:
|
|
15497
15564
|
| (
|
|
15498
15565
|
| 'pti_card'
|
|
15499
15566
|
| 'brivo_credential'
|
|
15567
|
+
| 'brivo_digital_credential'
|
|
15500
15568
|
| 'hid_credential'
|
|
15501
15569
|
| 'visionline_card'
|
|
15502
15570
|
| 'salto_ks_credential'
|
|
@@ -15719,13 +15787,14 @@ export type Routes = {
|
|
|
15719
15787
|
is_issued?: boolean | undefined
|
|
15720
15788
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15721
15789
|
issued_at?: (string | undefined) | null
|
|
15722
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15723
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
15790
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15791
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
15724
15792
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
15725
15793
|
external_type?:
|
|
15726
15794
|
| (
|
|
15727
15795
|
| 'pti_card'
|
|
15728
15796
|
| 'brivo_credential'
|
|
15797
|
+
| 'brivo_digital_credential'
|
|
15729
15798
|
| 'hid_credential'
|
|
15730
15799
|
| 'visionline_card'
|
|
15731
15800
|
| 'salto_ks_credential'
|
|
@@ -15878,13 +15947,14 @@ export type Routes = {
|
|
|
15878
15947
|
is_issued?: boolean | undefined
|
|
15879
15948
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15880
15949
|
issued_at?: (string | undefined) | null
|
|
15881
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15882
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
15950
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
15951
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
15883
15952
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
15884
15953
|
external_type?:
|
|
15885
15954
|
| (
|
|
15886
15955
|
| 'pti_card'
|
|
15887
15956
|
| 'brivo_credential'
|
|
15957
|
+
| 'brivo_digital_credential'
|
|
15888
15958
|
| 'hid_credential'
|
|
15889
15959
|
| 'visionline_card'
|
|
15890
15960
|
| 'salto_ks_credential'
|
|
@@ -16658,6 +16728,16 @@ export type Routes = {
|
|
|
16658
16728
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16659
16729
|
warning_code: 'updating_access_times'
|
|
16660
16730
|
}
|
|
16731
|
+
| {
|
|
16732
|
+
/** Date and time at which Seam created the warning. */
|
|
16733
|
+
created_at: string
|
|
16734
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
16735
|
+
message: string
|
|
16736
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16737
|
+
warning_code: 'pulled_backup_access_code'
|
|
16738
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
16739
|
+
original_access_method_id?: string | undefined
|
|
16740
|
+
}
|
|
16661
16741
|
)[]
|
|
16662
16742
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
16663
16743
|
pending_mutations: (
|
|
@@ -18814,6 +18894,16 @@ export type Routes = {
|
|
|
18814
18894
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18815
18895
|
warning_code: 'updating_access_times'
|
|
18816
18896
|
}
|
|
18897
|
+
| {
|
|
18898
|
+
/** Date and time at which Seam created the warning. */
|
|
18899
|
+
created_at: string
|
|
18900
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18901
|
+
message: string
|
|
18902
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18903
|
+
warning_code: 'pulled_backup_access_code'
|
|
18904
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
18905
|
+
original_access_method_id?: string | undefined
|
|
18906
|
+
}
|
|
18817
18907
|
)[]
|
|
18818
18908
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
18819
18909
|
pending_mutations: (
|
|
@@ -18967,13 +19057,14 @@ export type Routes = {
|
|
|
18967
19057
|
is_issued?: boolean | undefined
|
|
18968
19058
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
18969
19059
|
issued_at?: (string | undefined) | null
|
|
18970
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
18971
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
19060
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
19061
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
18972
19062
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18973
19063
|
external_type?:
|
|
18974
19064
|
| (
|
|
18975
19065
|
| 'pti_card'
|
|
18976
19066
|
| 'brivo_credential'
|
|
19067
|
+
| 'brivo_digital_credential'
|
|
18977
19068
|
| 'hid_credential'
|
|
18978
19069
|
| 'visionline_card'
|
|
18979
19070
|
| 'salto_ks_credential'
|
|
@@ -19163,6 +19254,16 @@ export type Routes = {
|
|
|
19163
19254
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19164
19255
|
warning_code: 'updating_access_times'
|
|
19165
19256
|
}
|
|
19257
|
+
| {
|
|
19258
|
+
/** Date and time at which Seam created the warning. */
|
|
19259
|
+
created_at: string
|
|
19260
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19261
|
+
message: string
|
|
19262
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19263
|
+
warning_code: 'pulled_backup_access_code'
|
|
19264
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19265
|
+
original_access_method_id?: string | undefined
|
|
19266
|
+
}
|
|
19166
19267
|
)[]
|
|
19167
19268
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19168
19269
|
pending_mutations: (
|
|
@@ -19280,6 +19381,16 @@ export type Routes = {
|
|
|
19280
19381
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19281
19382
|
warning_code: 'updating_access_times'
|
|
19282
19383
|
}
|
|
19384
|
+
| {
|
|
19385
|
+
/** Date and time at which Seam created the warning. */
|
|
19386
|
+
created_at: string
|
|
19387
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19388
|
+
message: string
|
|
19389
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19390
|
+
warning_code: 'pulled_backup_access_code'
|
|
19391
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19392
|
+
original_access_method_id?: string | undefined
|
|
19393
|
+
}
|
|
19283
19394
|
)[]
|
|
19284
19395
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19285
19396
|
pending_mutations: (
|
|
@@ -19400,6 +19511,16 @@ export type Routes = {
|
|
|
19400
19511
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19401
19512
|
warning_code: 'updating_access_times'
|
|
19402
19513
|
}
|
|
19514
|
+
| {
|
|
19515
|
+
/** Date and time at which Seam created the warning. */
|
|
19516
|
+
created_at: string
|
|
19517
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19518
|
+
message: string
|
|
19519
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19520
|
+
warning_code: 'pulled_backup_access_code'
|
|
19521
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
19522
|
+
original_access_method_id?: string | undefined
|
|
19523
|
+
}
|
|
19403
19524
|
)[]
|
|
19404
19525
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
19405
19526
|
pending_mutations: (
|
|
@@ -20875,13 +20996,14 @@ export type Routes = {
|
|
|
20875
20996
|
is_issued?: boolean | undefined
|
|
20876
20997
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
20877
20998
|
issued_at?: (string | undefined) | null
|
|
20878
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
20879
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
20999
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21000
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
20880
21001
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20881
21002
|
external_type?:
|
|
20882
21003
|
| (
|
|
20883
21004
|
| 'pti_card'
|
|
20884
21005
|
| 'brivo_credential'
|
|
21006
|
+
| 'brivo_digital_credential'
|
|
20885
21007
|
| 'hid_credential'
|
|
20886
21008
|
| 'visionline_card'
|
|
20887
21009
|
| 'salto_ks_credential'
|
|
@@ -21025,8 +21147,8 @@ export type Routes = {
|
|
|
21025
21147
|
user_identity_id?: string | undefined
|
|
21026
21148
|
/** ID of the access system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
21027
21149
|
acs_system_id?: string | undefined
|
|
21028
|
-
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21029
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
21150
|
+
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21151
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
21030
21152
|
/** Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview). */
|
|
21031
21153
|
code?: string | undefined
|
|
21032
21154
|
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
@@ -21114,13 +21236,14 @@ export type Routes = {
|
|
|
21114
21236
|
is_issued?: boolean | undefined
|
|
21115
21237
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21116
21238
|
issued_at?: (string | undefined) | null
|
|
21117
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21118
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
21239
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21240
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
21119
21241
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21120
21242
|
external_type?:
|
|
21121
21243
|
| (
|
|
21122
21244
|
| 'pti_card'
|
|
21123
21245
|
| 'brivo_credential'
|
|
21246
|
+
| 'brivo_digital_credential'
|
|
21124
21247
|
| 'hid_credential'
|
|
21125
21248
|
| 'visionline_card'
|
|
21126
21249
|
| 'salto_ks_credential'
|
|
@@ -21300,13 +21423,14 @@ export type Routes = {
|
|
|
21300
21423
|
is_issued?: boolean | undefined
|
|
21301
21424
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21302
21425
|
issued_at?: (string | undefined) | null
|
|
21303
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21304
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
21426
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21427
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
21305
21428
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21306
21429
|
external_type?:
|
|
21307
21430
|
| (
|
|
21308
21431
|
| 'pti_card'
|
|
21309
21432
|
| 'brivo_credential'
|
|
21433
|
+
| 'brivo_digital_credential'
|
|
21310
21434
|
| 'hid_credential'
|
|
21311
21435
|
| 'visionline_card'
|
|
21312
21436
|
| 'salto_ks_credential'
|
|
@@ -21491,13 +21615,14 @@ export type Routes = {
|
|
|
21491
21615
|
is_issued?: boolean | undefined
|
|
21492
21616
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21493
21617
|
issued_at?: (string | undefined) | null
|
|
21494
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21495
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
21618
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21619
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
21496
21620
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21497
21621
|
external_type?:
|
|
21498
21622
|
| (
|
|
21499
21623
|
| 'pti_card'
|
|
21500
21624
|
| 'brivo_credential'
|
|
21625
|
+
| 'brivo_digital_credential'
|
|
21501
21626
|
| 'hid_credential'
|
|
21502
21627
|
| 'visionline_card'
|
|
21503
21628
|
| 'salto_ks_credential'
|
|
@@ -21692,13 +21817,14 @@ export type Routes = {
|
|
|
21692
21817
|
is_issued?: boolean | undefined
|
|
21693
21818
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21694
21819
|
issued_at?: (string | undefined) | null
|
|
21695
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21696
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
21820
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
21821
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
21697
21822
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21698
21823
|
external_type?:
|
|
21699
21824
|
| (
|
|
21700
21825
|
| 'pti_card'
|
|
21701
21826
|
| 'brivo_credential'
|
|
21827
|
+
| 'brivo_digital_credential'
|
|
21702
21828
|
| 'hid_credential'
|
|
21703
21829
|
| 'visionline_card'
|
|
21704
21830
|
| 'salto_ks_credential'
|
|
@@ -22055,13 +22181,14 @@ export type Routes = {
|
|
|
22055
22181
|
is_issued?: boolean | undefined
|
|
22056
22182
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22057
22183
|
issued_at?: (string | undefined) | null
|
|
22058
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22059
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
22184
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
22185
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
22060
22186
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22061
22187
|
external_type?:
|
|
22062
22188
|
| (
|
|
22063
22189
|
| 'pti_card'
|
|
22064
22190
|
| 'brivo_credential'
|
|
22191
|
+
| 'brivo_digital_credential'
|
|
22065
22192
|
| 'hid_credential'
|
|
22066
22193
|
| 'visionline_card'
|
|
22067
22194
|
| 'salto_ks_credential'
|
|
@@ -22229,13 +22356,14 @@ export type Routes = {
|
|
|
22229
22356
|
is_issued?: boolean | undefined
|
|
22230
22357
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22231
22358
|
issued_at?: (string | undefined) | null
|
|
22232
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22233
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
22359
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
22360
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
22234
22361
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22235
22362
|
external_type?:
|
|
22236
22363
|
| (
|
|
22237
22364
|
| 'pti_card'
|
|
22238
22365
|
| 'brivo_credential'
|
|
22366
|
+
| 'brivo_digital_credential'
|
|
22239
22367
|
| 'hid_credential'
|
|
22240
22368
|
| 'visionline_card'
|
|
22241
22369
|
| 'salto_ks_credential'
|
|
@@ -22421,13 +22549,14 @@ export type Routes = {
|
|
|
22421
22549
|
is_issued?: boolean | undefined
|
|
22422
22550
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22423
22551
|
issued_at?: (string | undefined) | null
|
|
22424
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22425
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
22552
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
22553
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
22426
22554
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22427
22555
|
external_type?:
|
|
22428
22556
|
| (
|
|
22429
22557
|
| 'pti_card'
|
|
22430
22558
|
| 'brivo_credential'
|
|
22559
|
+
| 'brivo_digital_credential'
|
|
22431
22560
|
| 'hid_credential'
|
|
22432
22561
|
| 'visionline_card'
|
|
22433
22562
|
| 'salto_ks_credential'
|
|
@@ -22603,13 +22732,14 @@ export type Routes = {
|
|
|
22603
22732
|
is_issued?: boolean | undefined
|
|
22604
22733
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22605
22734
|
issued_at?: (string | undefined) | null
|
|
22606
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22607
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
22735
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
22736
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
22608
22737
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22609
22738
|
external_type?:
|
|
22610
22739
|
| (
|
|
22611
22740
|
| 'pti_card'
|
|
22612
22741
|
| 'brivo_credential'
|
|
22742
|
+
| 'brivo_digital_credential'
|
|
22613
22743
|
| 'hid_credential'
|
|
22614
22744
|
| 'visionline_card'
|
|
22615
22745
|
| 'salto_ks_credential'
|
|
@@ -22933,13 +23063,18 @@ export type Routes = {
|
|
|
22933
23063
|
is_issued?: boolean | undefined
|
|
22934
23064
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22935
23065
|
issued_at?: (string | undefined) | null
|
|
22936
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22937
|
-
access_method:
|
|
23066
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
23067
|
+
access_method:
|
|
23068
|
+
| 'code'
|
|
23069
|
+
| 'card'
|
|
23070
|
+
| 'mobile_key'
|
|
23071
|
+
| 'cloud_key'
|
|
22938
23072
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22939
23073
|
external_type?:
|
|
22940
23074
|
| (
|
|
22941
23075
|
| 'pti_card'
|
|
22942
23076
|
| 'brivo_credential'
|
|
23077
|
+
| 'brivo_digital_credential'
|
|
22943
23078
|
| 'hid_credential'
|
|
22944
23079
|
| 'visionline_card'
|
|
22945
23080
|
| 'salto_ks_credential'
|
|
@@ -23094,13 +23229,18 @@ export type Routes = {
|
|
|
23094
23229
|
is_issued?: boolean | undefined
|
|
23095
23230
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23096
23231
|
issued_at?: (string | undefined) | null
|
|
23097
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23098
|
-
access_method:
|
|
23232
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
23233
|
+
access_method:
|
|
23234
|
+
| 'code'
|
|
23235
|
+
| 'card'
|
|
23236
|
+
| 'mobile_key'
|
|
23237
|
+
| 'cloud_key'
|
|
23099
23238
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23100
23239
|
external_type?:
|
|
23101
23240
|
| (
|
|
23102
23241
|
| 'pti_card'
|
|
23103
23242
|
| 'brivo_credential'
|
|
23243
|
+
| 'brivo_digital_credential'
|
|
23104
23244
|
| 'hid_credential'
|
|
23105
23245
|
| 'visionline_card'
|
|
23106
23246
|
| 'salto_ks_credential'
|
|
@@ -23323,13 +23463,14 @@ export type Routes = {
|
|
|
23323
23463
|
is_issued?: boolean | undefined
|
|
23324
23464
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23325
23465
|
issued_at?: (string | undefined) | null
|
|
23326
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23327
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
23466
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
23467
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
23328
23468
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23329
23469
|
external_type?:
|
|
23330
23470
|
| (
|
|
23331
23471
|
| 'pti_card'
|
|
23332
23472
|
| 'brivo_credential'
|
|
23473
|
+
| 'brivo_digital_credential'
|
|
23333
23474
|
| 'hid_credential'
|
|
23334
23475
|
| 'visionline_card'
|
|
23335
23476
|
| 'salto_ks_credential'
|
|
@@ -23482,13 +23623,14 @@ export type Routes = {
|
|
|
23482
23623
|
is_issued?: boolean | undefined
|
|
23483
23624
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23484
23625
|
issued_at?: (string | undefined) | null
|
|
23485
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23486
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
23626
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
23627
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
23487
23628
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23488
23629
|
external_type?:
|
|
23489
23630
|
| (
|
|
23490
23631
|
| 'pti_card'
|
|
23491
23632
|
| 'brivo_credential'
|
|
23633
|
+
| 'brivo_digital_credential'
|
|
23492
23634
|
| 'hid_credential'
|
|
23493
23635
|
| 'visionline_card'
|
|
23494
23636
|
| 'salto_ks_credential'
|
|
@@ -24511,13 +24653,18 @@ export type Routes = {
|
|
|
24511
24653
|
is_issued?: boolean | undefined
|
|
24512
24654
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24513
24655
|
issued_at?: (string | undefined) | null
|
|
24514
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24515
|
-
access_method:
|
|
24656
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
24657
|
+
access_method:
|
|
24658
|
+
| 'code'
|
|
24659
|
+
| 'card'
|
|
24660
|
+
| 'mobile_key'
|
|
24661
|
+
| 'cloud_key'
|
|
24516
24662
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24517
24663
|
external_type?:
|
|
24518
24664
|
| (
|
|
24519
24665
|
| 'pti_card'
|
|
24520
24666
|
| 'brivo_credential'
|
|
24667
|
+
| 'brivo_digital_credential'
|
|
24521
24668
|
| 'hid_credential'
|
|
24522
24669
|
| 'visionline_card'
|
|
24523
24670
|
| 'salto_ks_credential'
|
|
@@ -24672,13 +24819,18 @@ export type Routes = {
|
|
|
24672
24819
|
is_issued?: boolean | undefined
|
|
24673
24820
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24674
24821
|
issued_at?: (string | undefined) | null
|
|
24675
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24676
|
-
access_method:
|
|
24822
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
24823
|
+
access_method:
|
|
24824
|
+
| 'code'
|
|
24825
|
+
| 'card'
|
|
24826
|
+
| 'mobile_key'
|
|
24827
|
+
| 'cloud_key'
|
|
24677
24828
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24678
24829
|
external_type?:
|
|
24679
24830
|
| (
|
|
24680
24831
|
| 'pti_card'
|
|
24681
24832
|
| 'brivo_credential'
|
|
24833
|
+
| 'brivo_digital_credential'
|
|
24682
24834
|
| 'hid_credential'
|
|
24683
24835
|
| 'visionline_card'
|
|
24684
24836
|
| 'salto_ks_credential'
|
|
@@ -24901,13 +25053,14 @@ export type Routes = {
|
|
|
24901
25053
|
is_issued?: boolean | undefined
|
|
24902
25054
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24903
25055
|
issued_at?: (string | undefined) | null
|
|
24904
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24905
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
25056
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
25057
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
24906
25058
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24907
25059
|
external_type?:
|
|
24908
25060
|
| (
|
|
24909
25061
|
| 'pti_card'
|
|
24910
25062
|
| 'brivo_credential'
|
|
25063
|
+
| 'brivo_digital_credential'
|
|
24911
25064
|
| 'hid_credential'
|
|
24912
25065
|
| 'visionline_card'
|
|
24913
25066
|
| 'salto_ks_credential'
|
|
@@ -25060,13 +25213,14 @@ export type Routes = {
|
|
|
25060
25213
|
is_issued?: boolean | undefined
|
|
25061
25214
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
25062
25215
|
issued_at?: (string | undefined) | null
|
|
25063
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
25064
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
25216
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
25217
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
25065
25218
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25066
25219
|
external_type?:
|
|
25067
25220
|
| (
|
|
25068
25221
|
| 'pti_card'
|
|
25069
25222
|
| 'brivo_credential'
|
|
25223
|
+
| 'brivo_digital_credential'
|
|
25070
25224
|
| 'hid_credential'
|
|
25071
25225
|
| 'visionline_card'
|
|
25072
25226
|
| 'salto_ks_credential'
|
|
@@ -26310,13 +26464,14 @@ export type Routes = {
|
|
|
26310
26464
|
is_issued?: boolean | undefined
|
|
26311
26465
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
26312
26466
|
issued_at?: (string | undefined) | null
|
|
26313
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
26314
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
26467
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
26468
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
26315
26469
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26316
26470
|
external_type?:
|
|
26317
26471
|
| (
|
|
26318
26472
|
| 'pti_card'
|
|
26319
26473
|
| 'brivo_credential'
|
|
26474
|
+
| 'brivo_digital_credential'
|
|
26320
26475
|
| 'hid_credential'
|
|
26321
26476
|
| 'visionline_card'
|
|
26322
26477
|
| 'salto_ks_credential'
|
|
@@ -29040,13 +29195,18 @@ export type Routes = {
|
|
|
29040
29195
|
is_issued?: boolean | undefined
|
|
29041
29196
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29042
29197
|
issued_at?: (string | undefined) | null
|
|
29043
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29044
|
-
access_method:
|
|
29198
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
29199
|
+
access_method:
|
|
29200
|
+
| 'code'
|
|
29201
|
+
| 'card'
|
|
29202
|
+
| 'mobile_key'
|
|
29203
|
+
| 'cloud_key'
|
|
29045
29204
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29046
29205
|
external_type?:
|
|
29047
29206
|
| (
|
|
29048
29207
|
| 'pti_card'
|
|
29049
29208
|
| 'brivo_credential'
|
|
29209
|
+
| 'brivo_digital_credential'
|
|
29050
29210
|
| 'hid_credential'
|
|
29051
29211
|
| 'visionline_card'
|
|
29052
29212
|
| 'salto_ks_credential'
|
|
@@ -29201,13 +29361,18 @@ export type Routes = {
|
|
|
29201
29361
|
is_issued?: boolean | undefined
|
|
29202
29362
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29203
29363
|
issued_at?: (string | undefined) | null
|
|
29204
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29205
|
-
access_method:
|
|
29364
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
29365
|
+
access_method:
|
|
29366
|
+
| 'code'
|
|
29367
|
+
| 'card'
|
|
29368
|
+
| 'mobile_key'
|
|
29369
|
+
| 'cloud_key'
|
|
29206
29370
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29207
29371
|
external_type?:
|
|
29208
29372
|
| (
|
|
29209
29373
|
| 'pti_card'
|
|
29210
29374
|
| 'brivo_credential'
|
|
29375
|
+
| 'brivo_digital_credential'
|
|
29211
29376
|
| 'hid_credential'
|
|
29212
29377
|
| 'visionline_card'
|
|
29213
29378
|
| 'salto_ks_credential'
|
|
@@ -29430,13 +29595,14 @@ export type Routes = {
|
|
|
29430
29595
|
is_issued?: boolean | undefined
|
|
29431
29596
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29432
29597
|
issued_at?: (string | undefined) | null
|
|
29433
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29434
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
29598
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
29599
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
29435
29600
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29436
29601
|
external_type?:
|
|
29437
29602
|
| (
|
|
29438
29603
|
| 'pti_card'
|
|
29439
29604
|
| 'brivo_credential'
|
|
29605
|
+
| 'brivo_digital_credential'
|
|
29440
29606
|
| 'hid_credential'
|
|
29441
29607
|
| 'visionline_card'
|
|
29442
29608
|
| 'salto_ks_credential'
|
|
@@ -29589,13 +29755,14 @@ export type Routes = {
|
|
|
29589
29755
|
is_issued?: boolean | undefined
|
|
29590
29756
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29591
29757
|
issued_at?: (string | undefined) | null
|
|
29592
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29593
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
29758
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
29759
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
29594
29760
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29595
29761
|
external_type?:
|
|
29596
29762
|
| (
|
|
29597
29763
|
| 'pti_card'
|
|
29598
29764
|
| 'brivo_credential'
|
|
29765
|
+
| 'brivo_digital_credential'
|
|
29599
29766
|
| 'hid_credential'
|
|
29600
29767
|
| 'visionline_card'
|
|
29601
29768
|
| 'salto_ks_credential'
|
|
@@ -30507,13 +30674,18 @@ export type Routes = {
|
|
|
30507
30674
|
is_issued?: boolean | undefined
|
|
30508
30675
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30509
30676
|
issued_at?: (string | undefined) | null
|
|
30510
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30511
|
-
access_method:
|
|
30677
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
30678
|
+
access_method:
|
|
30679
|
+
| 'code'
|
|
30680
|
+
| 'card'
|
|
30681
|
+
| 'mobile_key'
|
|
30682
|
+
| 'cloud_key'
|
|
30512
30683
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30513
30684
|
external_type?:
|
|
30514
30685
|
| (
|
|
30515
30686
|
| 'pti_card'
|
|
30516
30687
|
| 'brivo_credential'
|
|
30688
|
+
| 'brivo_digital_credential'
|
|
30517
30689
|
| 'hid_credential'
|
|
30518
30690
|
| 'visionline_card'
|
|
30519
30691
|
| 'salto_ks_credential'
|
|
@@ -30668,13 +30840,18 @@ export type Routes = {
|
|
|
30668
30840
|
is_issued?: boolean | undefined
|
|
30669
30841
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30670
30842
|
issued_at?: (string | undefined) | null
|
|
30671
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30672
|
-
access_method:
|
|
30843
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
30844
|
+
access_method:
|
|
30845
|
+
| 'code'
|
|
30846
|
+
| 'card'
|
|
30847
|
+
| 'mobile_key'
|
|
30848
|
+
| 'cloud_key'
|
|
30673
30849
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30674
30850
|
external_type?:
|
|
30675
30851
|
| (
|
|
30676
30852
|
| 'pti_card'
|
|
30677
30853
|
| 'brivo_credential'
|
|
30854
|
+
| 'brivo_digital_credential'
|
|
30678
30855
|
| 'hid_credential'
|
|
30679
30856
|
| 'visionline_card'
|
|
30680
30857
|
| 'salto_ks_credential'
|
|
@@ -30897,13 +31074,14 @@ export type Routes = {
|
|
|
30897
31074
|
is_issued?: boolean | undefined
|
|
30898
31075
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30899
31076
|
issued_at?: (string | undefined) | null
|
|
30900
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30901
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
31077
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
31078
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
30902
31079
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30903
31080
|
external_type?:
|
|
30904
31081
|
| (
|
|
30905
31082
|
| 'pti_card'
|
|
30906
31083
|
| 'brivo_credential'
|
|
31084
|
+
| 'brivo_digital_credential'
|
|
30907
31085
|
| 'hid_credential'
|
|
30908
31086
|
| 'visionline_card'
|
|
30909
31087
|
| 'salto_ks_credential'
|
|
@@ -31056,13 +31234,14 @@ export type Routes = {
|
|
|
31056
31234
|
is_issued?: boolean | undefined
|
|
31057
31235
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
31058
31236
|
issued_at?: (string | undefined) | null
|
|
31059
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
31060
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
31237
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
31238
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
31061
31239
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31062
31240
|
external_type?:
|
|
31063
31241
|
| (
|
|
31064
31242
|
| 'pti_card'
|
|
31065
31243
|
| 'brivo_credential'
|
|
31244
|
+
| 'brivo_digital_credential'
|
|
31066
31245
|
| 'hid_credential'
|
|
31067
31246
|
| 'visionline_card'
|
|
31068
31247
|
| 'salto_ks_credential'
|
|
@@ -53065,13 +53244,18 @@ export type Routes = {
|
|
|
53065
53244
|
is_issued?: boolean | undefined
|
|
53066
53245
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53067
53246
|
issued_at?: (string | undefined) | null
|
|
53068
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53069
|
-
access_method:
|
|
53247
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
53248
|
+
access_method:
|
|
53249
|
+
| 'code'
|
|
53250
|
+
| 'card'
|
|
53251
|
+
| 'mobile_key'
|
|
53252
|
+
| 'cloud_key'
|
|
53070
53253
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
53071
53254
|
external_type?:
|
|
53072
53255
|
| (
|
|
53073
53256
|
| 'pti_card'
|
|
53074
53257
|
| 'brivo_credential'
|
|
53258
|
+
| 'brivo_digital_credential'
|
|
53075
53259
|
| 'hid_credential'
|
|
53076
53260
|
| 'visionline_card'
|
|
53077
53261
|
| 'salto_ks_credential'
|
|
@@ -53226,13 +53410,18 @@ export type Routes = {
|
|
|
53226
53410
|
is_issued?: boolean | undefined
|
|
53227
53411
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53228
53412
|
issued_at?: (string | undefined) | null
|
|
53229
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53230
|
-
access_method:
|
|
53413
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
53414
|
+
access_method:
|
|
53415
|
+
| 'code'
|
|
53416
|
+
| 'card'
|
|
53417
|
+
| 'mobile_key'
|
|
53418
|
+
| 'cloud_key'
|
|
53231
53419
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
53232
53420
|
external_type?:
|
|
53233
53421
|
| (
|
|
53234
53422
|
| 'pti_card'
|
|
53235
53423
|
| 'brivo_credential'
|
|
53424
|
+
| 'brivo_digital_credential'
|
|
53236
53425
|
| 'hid_credential'
|
|
53237
53426
|
| 'visionline_card'
|
|
53238
53427
|
| 'salto_ks_credential'
|
|
@@ -53455,13 +53644,14 @@ export type Routes = {
|
|
|
53455
53644
|
is_issued?: boolean | undefined
|
|
53456
53645
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53457
53646
|
issued_at?: (string | undefined) | null
|
|
53458
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53459
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
53647
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
53648
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
53460
53649
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
53461
53650
|
external_type?:
|
|
53462
53651
|
| (
|
|
53463
53652
|
| 'pti_card'
|
|
53464
53653
|
| 'brivo_credential'
|
|
53654
|
+
| 'brivo_digital_credential'
|
|
53465
53655
|
| 'hid_credential'
|
|
53466
53656
|
| 'visionline_card'
|
|
53467
53657
|
| 'salto_ks_credential'
|
|
@@ -53614,13 +53804,14 @@ export type Routes = {
|
|
|
53614
53804
|
is_issued?: boolean | undefined
|
|
53615
53805
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53616
53806
|
issued_at?: (string | undefined) | null
|
|
53617
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53618
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
53807
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
53808
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
53619
53809
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
53620
53810
|
external_type?:
|
|
53621
53811
|
| (
|
|
53622
53812
|
| 'pti_card'
|
|
53623
53813
|
| 'brivo_credential'
|
|
53814
|
+
| 'brivo_digital_credential'
|
|
53624
53815
|
| 'hid_credential'
|
|
53625
53816
|
| 'visionline_card'
|
|
53626
53817
|
| 'salto_ks_credential'
|
|
@@ -54533,13 +54724,18 @@ export type Routes = {
|
|
|
54533
54724
|
is_issued?: boolean | undefined
|
|
54534
54725
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54535
54726
|
issued_at?: (string | undefined) | null
|
|
54536
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54537
|
-
access_method:
|
|
54727
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
54728
|
+
access_method:
|
|
54729
|
+
| 'code'
|
|
54730
|
+
| 'card'
|
|
54731
|
+
| 'mobile_key'
|
|
54732
|
+
| 'cloud_key'
|
|
54538
54733
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
54539
54734
|
external_type?:
|
|
54540
54735
|
| (
|
|
54541
54736
|
| 'pti_card'
|
|
54542
54737
|
| 'brivo_credential'
|
|
54738
|
+
| 'brivo_digital_credential'
|
|
54543
54739
|
| 'hid_credential'
|
|
54544
54740
|
| 'visionline_card'
|
|
54545
54741
|
| 'salto_ks_credential'
|
|
@@ -54694,13 +54890,18 @@ export type Routes = {
|
|
|
54694
54890
|
is_issued?: boolean | undefined
|
|
54695
54891
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54696
54892
|
issued_at?: (string | undefined) | null
|
|
54697
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54698
|
-
access_method:
|
|
54893
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
54894
|
+
access_method:
|
|
54895
|
+
| 'code'
|
|
54896
|
+
| 'card'
|
|
54897
|
+
| 'mobile_key'
|
|
54898
|
+
| 'cloud_key'
|
|
54699
54899
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
54700
54900
|
external_type?:
|
|
54701
54901
|
| (
|
|
54702
54902
|
| 'pti_card'
|
|
54703
54903
|
| 'brivo_credential'
|
|
54904
|
+
| 'brivo_digital_credential'
|
|
54704
54905
|
| 'hid_credential'
|
|
54705
54906
|
| 'visionline_card'
|
|
54706
54907
|
| 'salto_ks_credential'
|
|
@@ -54923,13 +55124,14 @@ export type Routes = {
|
|
|
54923
55124
|
is_issued?: boolean | undefined
|
|
54924
55125
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54925
55126
|
issued_at?: (string | undefined) | null
|
|
54926
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54927
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
55127
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
55128
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
54928
55129
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
54929
55130
|
external_type?:
|
|
54930
55131
|
| (
|
|
54931
55132
|
| 'pti_card'
|
|
54932
55133
|
| 'brivo_credential'
|
|
55134
|
+
| 'brivo_digital_credential'
|
|
54933
55135
|
| 'hid_credential'
|
|
54934
55136
|
| 'visionline_card'
|
|
54935
55137
|
| 'salto_ks_credential'
|
|
@@ -55082,13 +55284,14 @@ export type Routes = {
|
|
|
55082
55284
|
is_issued?: boolean | undefined
|
|
55083
55285
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
55084
55286
|
issued_at?: (string | undefined) | null
|
|
55085
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
55086
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
55287
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
55288
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
55087
55289
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
55088
55290
|
external_type?:
|
|
55089
55291
|
| (
|
|
55090
55292
|
| 'pti_card'
|
|
55091
55293
|
| 'brivo_credential'
|
|
55294
|
+
| 'brivo_digital_credential'
|
|
55092
55295
|
| 'hid_credential'
|
|
55093
55296
|
| 'visionline_card'
|
|
55094
55297
|
| 'salto_ks_credential'
|
|
@@ -55999,13 +56202,18 @@ export type Routes = {
|
|
|
55999
56202
|
is_issued?: boolean | undefined
|
|
56000
56203
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56001
56204
|
issued_at?: (string | undefined) | null
|
|
56002
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56003
|
-
access_method:
|
|
56205
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
56206
|
+
access_method:
|
|
56207
|
+
| 'code'
|
|
56208
|
+
| 'card'
|
|
56209
|
+
| 'mobile_key'
|
|
56210
|
+
| 'cloud_key'
|
|
56004
56211
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56005
56212
|
external_type?:
|
|
56006
56213
|
| (
|
|
56007
56214
|
| 'pti_card'
|
|
56008
56215
|
| 'brivo_credential'
|
|
56216
|
+
| 'brivo_digital_credential'
|
|
56009
56217
|
| 'hid_credential'
|
|
56010
56218
|
| 'visionline_card'
|
|
56011
56219
|
| 'salto_ks_credential'
|
|
@@ -56160,13 +56368,18 @@ export type Routes = {
|
|
|
56160
56368
|
is_issued?: boolean | undefined
|
|
56161
56369
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56162
56370
|
issued_at?: (string | undefined) | null
|
|
56163
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56164
|
-
access_method:
|
|
56371
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
56372
|
+
access_method:
|
|
56373
|
+
| 'code'
|
|
56374
|
+
| 'card'
|
|
56375
|
+
| 'mobile_key'
|
|
56376
|
+
| 'cloud_key'
|
|
56165
56377
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56166
56378
|
external_type?:
|
|
56167
56379
|
| (
|
|
56168
56380
|
| 'pti_card'
|
|
56169
56381
|
| 'brivo_credential'
|
|
56382
|
+
| 'brivo_digital_credential'
|
|
56170
56383
|
| 'hid_credential'
|
|
56171
56384
|
| 'visionline_card'
|
|
56172
56385
|
| 'salto_ks_credential'
|
|
@@ -56389,13 +56602,14 @@ export type Routes = {
|
|
|
56389
56602
|
is_issued?: boolean | undefined
|
|
56390
56603
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56391
56604
|
issued_at?: (string | undefined) | null
|
|
56392
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56393
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
56605
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
56606
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
56394
56607
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56395
56608
|
external_type?:
|
|
56396
56609
|
| (
|
|
56397
56610
|
| 'pti_card'
|
|
56398
56611
|
| 'brivo_credential'
|
|
56612
|
+
| 'brivo_digital_credential'
|
|
56399
56613
|
| 'hid_credential'
|
|
56400
56614
|
| 'visionline_card'
|
|
56401
56615
|
| 'salto_ks_credential'
|
|
@@ -56548,13 +56762,14 @@ export type Routes = {
|
|
|
56548
56762
|
is_issued?: boolean | undefined
|
|
56549
56763
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56550
56764
|
issued_at?: (string | undefined) | null
|
|
56551
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56552
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
56765
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
56766
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
56553
56767
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
56554
56768
|
external_type?:
|
|
56555
56769
|
| (
|
|
56556
56770
|
| 'pti_card'
|
|
56557
56771
|
| 'brivo_credential'
|
|
56772
|
+
| 'brivo_digital_credential'
|
|
56558
56773
|
| 'hid_credential'
|
|
56559
56774
|
| 'visionline_card'
|
|
56560
56775
|
| 'salto_ks_credential'
|
|
@@ -57467,13 +57682,18 @@ export type Routes = {
|
|
|
57467
57682
|
is_issued?: boolean | undefined
|
|
57468
57683
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57469
57684
|
issued_at?: (string | undefined) | null
|
|
57470
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57471
|
-
access_method:
|
|
57685
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
57686
|
+
access_method:
|
|
57687
|
+
| 'code'
|
|
57688
|
+
| 'card'
|
|
57689
|
+
| 'mobile_key'
|
|
57690
|
+
| 'cloud_key'
|
|
57472
57691
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
57473
57692
|
external_type?:
|
|
57474
57693
|
| (
|
|
57475
57694
|
| 'pti_card'
|
|
57476
57695
|
| 'brivo_credential'
|
|
57696
|
+
| 'brivo_digital_credential'
|
|
57477
57697
|
| 'hid_credential'
|
|
57478
57698
|
| 'visionline_card'
|
|
57479
57699
|
| 'salto_ks_credential'
|
|
@@ -57628,13 +57848,18 @@ export type Routes = {
|
|
|
57628
57848
|
is_issued?: boolean | undefined
|
|
57629
57849
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57630
57850
|
issued_at?: (string | undefined) | null
|
|
57631
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57632
|
-
access_method:
|
|
57851
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
57852
|
+
access_method:
|
|
57853
|
+
| 'code'
|
|
57854
|
+
| 'card'
|
|
57855
|
+
| 'mobile_key'
|
|
57856
|
+
| 'cloud_key'
|
|
57633
57857
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
57634
57858
|
external_type?:
|
|
57635
57859
|
| (
|
|
57636
57860
|
| 'pti_card'
|
|
57637
57861
|
| 'brivo_credential'
|
|
57862
|
+
| 'brivo_digital_credential'
|
|
57638
57863
|
| 'hid_credential'
|
|
57639
57864
|
| 'visionline_card'
|
|
57640
57865
|
| 'salto_ks_credential'
|
|
@@ -57857,13 +58082,14 @@ export type Routes = {
|
|
|
57857
58082
|
is_issued?: boolean | undefined
|
|
57858
58083
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57859
58084
|
issued_at?: (string | undefined) | null
|
|
57860
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57861
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
58085
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
58086
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
57862
58087
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
57863
58088
|
external_type?:
|
|
57864
58089
|
| (
|
|
57865
58090
|
| 'pti_card'
|
|
57866
58091
|
| 'brivo_credential'
|
|
58092
|
+
| 'brivo_digital_credential'
|
|
57867
58093
|
| 'hid_credential'
|
|
57868
58094
|
| 'visionline_card'
|
|
57869
58095
|
| 'salto_ks_credential'
|
|
@@ -58016,13 +58242,14 @@ export type Routes = {
|
|
|
58016
58242
|
is_issued?: boolean | undefined
|
|
58017
58243
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
58018
58244
|
issued_at?: (string | undefined) | null
|
|
58019
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
58020
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
58245
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
58246
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
58021
58247
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
58022
58248
|
external_type?:
|
|
58023
58249
|
| (
|
|
58024
58250
|
| 'pti_card'
|
|
58025
58251
|
| 'brivo_credential'
|
|
58252
|
+
| 'brivo_digital_credential'
|
|
58026
58253
|
| 'hid_credential'
|
|
58027
58254
|
| 'visionline_card'
|
|
58028
58255
|
| 'salto_ks_credential'
|
|
@@ -62296,13 +62523,18 @@ export type Routes = {
|
|
|
62296
62523
|
is_issued?: boolean | undefined
|
|
62297
62524
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62298
62525
|
issued_at?: (string | undefined) | null
|
|
62299
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62300
|
-
access_method:
|
|
62526
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
62527
|
+
access_method:
|
|
62528
|
+
| 'code'
|
|
62529
|
+
| 'card'
|
|
62530
|
+
| 'mobile_key'
|
|
62531
|
+
| 'cloud_key'
|
|
62301
62532
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62302
62533
|
external_type?:
|
|
62303
62534
|
| (
|
|
62304
62535
|
| 'pti_card'
|
|
62305
62536
|
| 'brivo_credential'
|
|
62537
|
+
| 'brivo_digital_credential'
|
|
62306
62538
|
| 'hid_credential'
|
|
62307
62539
|
| 'visionline_card'
|
|
62308
62540
|
| 'salto_ks_credential'
|
|
@@ -62457,13 +62689,18 @@ export type Routes = {
|
|
|
62457
62689
|
is_issued?: boolean | undefined
|
|
62458
62690
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62459
62691
|
issued_at?: (string | undefined) | null
|
|
62460
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62461
|
-
access_method:
|
|
62692
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
62693
|
+
access_method:
|
|
62694
|
+
| 'code'
|
|
62695
|
+
| 'card'
|
|
62696
|
+
| 'mobile_key'
|
|
62697
|
+
| 'cloud_key'
|
|
62462
62698
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62463
62699
|
external_type?:
|
|
62464
62700
|
| (
|
|
62465
62701
|
| 'pti_card'
|
|
62466
62702
|
| 'brivo_credential'
|
|
62703
|
+
| 'brivo_digital_credential'
|
|
62467
62704
|
| 'hid_credential'
|
|
62468
62705
|
| 'visionline_card'
|
|
62469
62706
|
| 'salto_ks_credential'
|
|
@@ -62686,13 +62923,14 @@ export type Routes = {
|
|
|
62686
62923
|
is_issued?: boolean | undefined
|
|
62687
62924
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62688
62925
|
issued_at?: (string | undefined) | null
|
|
62689
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62690
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
62926
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
62927
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
62691
62928
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62692
62929
|
external_type?:
|
|
62693
62930
|
| (
|
|
62694
62931
|
| 'pti_card'
|
|
62695
62932
|
| 'brivo_credential'
|
|
62933
|
+
| 'brivo_digital_credential'
|
|
62696
62934
|
| 'hid_credential'
|
|
62697
62935
|
| 'visionline_card'
|
|
62698
62936
|
| 'salto_ks_credential'
|
|
@@ -62845,13 +63083,14 @@ export type Routes = {
|
|
|
62845
63083
|
is_issued?: boolean | undefined
|
|
62846
63084
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62847
63085
|
issued_at?: (string | undefined) | null
|
|
62848
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62849
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
63086
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
63087
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
62850
63088
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62851
63089
|
external_type?:
|
|
62852
63090
|
| (
|
|
62853
63091
|
| 'pti_card'
|
|
62854
63092
|
| 'brivo_credential'
|
|
63093
|
+
| 'brivo_digital_credential'
|
|
62855
63094
|
| 'hid_credential'
|
|
62856
63095
|
| 'visionline_card'
|
|
62857
63096
|
| 'salto_ks_credential'
|
|
@@ -63783,13 +64022,18 @@ export type Routes = {
|
|
|
63783
64022
|
is_issued?: boolean | undefined
|
|
63784
64023
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
63785
64024
|
issued_at?: (string | undefined) | null
|
|
63786
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
63787
|
-
access_method:
|
|
64025
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64026
|
+
access_method:
|
|
64027
|
+
| 'code'
|
|
64028
|
+
| 'card'
|
|
64029
|
+
| 'mobile_key'
|
|
64030
|
+
| 'cloud_key'
|
|
63788
64031
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63789
64032
|
external_type?:
|
|
63790
64033
|
| (
|
|
63791
64034
|
| 'pti_card'
|
|
63792
64035
|
| 'brivo_credential'
|
|
64036
|
+
| 'brivo_digital_credential'
|
|
63793
64037
|
| 'hid_credential'
|
|
63794
64038
|
| 'visionline_card'
|
|
63795
64039
|
| 'salto_ks_credential'
|
|
@@ -63944,13 +64188,18 @@ export type Routes = {
|
|
|
63944
64188
|
is_issued?: boolean | undefined
|
|
63945
64189
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
63946
64190
|
issued_at?: (string | undefined) | null
|
|
63947
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
63948
|
-
access_method:
|
|
64191
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64192
|
+
access_method:
|
|
64193
|
+
| 'code'
|
|
64194
|
+
| 'card'
|
|
64195
|
+
| 'mobile_key'
|
|
64196
|
+
| 'cloud_key'
|
|
63949
64197
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63950
64198
|
external_type?:
|
|
63951
64199
|
| (
|
|
63952
64200
|
| 'pti_card'
|
|
63953
64201
|
| 'brivo_credential'
|
|
64202
|
+
| 'brivo_digital_credential'
|
|
63954
64203
|
| 'hid_credential'
|
|
63955
64204
|
| 'visionline_card'
|
|
63956
64205
|
| 'salto_ks_credential'
|
|
@@ -64173,13 +64422,14 @@ export type Routes = {
|
|
|
64173
64422
|
is_issued?: boolean | undefined
|
|
64174
64423
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
64175
64424
|
issued_at?: (string | undefined) | null
|
|
64176
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
64177
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
64425
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64426
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
64178
64427
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64179
64428
|
external_type?:
|
|
64180
64429
|
| (
|
|
64181
64430
|
| 'pti_card'
|
|
64182
64431
|
| 'brivo_credential'
|
|
64432
|
+
| 'brivo_digital_credential'
|
|
64183
64433
|
| 'hid_credential'
|
|
64184
64434
|
| 'visionline_card'
|
|
64185
64435
|
| 'salto_ks_credential'
|
|
@@ -64332,13 +64582,14 @@ export type Routes = {
|
|
|
64332
64582
|
is_issued?: boolean | undefined
|
|
64333
64583
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
64334
64584
|
issued_at?: (string | undefined) | null
|
|
64335
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
64336
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
64585
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64586
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
64337
64587
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64338
64588
|
external_type?:
|
|
64339
64589
|
| (
|
|
64340
64590
|
| 'pti_card'
|
|
64341
64591
|
| 'brivo_credential'
|
|
64592
|
+
| 'brivo_digital_credential'
|
|
64342
64593
|
| 'hid_credential'
|
|
64343
64594
|
| 'visionline_card'
|
|
64344
64595
|
| 'salto_ks_credential'
|
|
@@ -65326,13 +65577,18 @@ export type Routes = {
|
|
|
65326
65577
|
is_issued?: boolean | undefined
|
|
65327
65578
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65328
65579
|
issued_at?: (string | undefined) | null
|
|
65329
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65330
|
-
access_method:
|
|
65580
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
65581
|
+
access_method:
|
|
65582
|
+
| 'code'
|
|
65583
|
+
| 'card'
|
|
65584
|
+
| 'mobile_key'
|
|
65585
|
+
| 'cloud_key'
|
|
65331
65586
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65332
65587
|
external_type?:
|
|
65333
65588
|
| (
|
|
65334
65589
|
| 'pti_card'
|
|
65335
65590
|
| 'brivo_credential'
|
|
65591
|
+
| 'brivo_digital_credential'
|
|
65336
65592
|
| 'hid_credential'
|
|
65337
65593
|
| 'visionline_card'
|
|
65338
65594
|
| 'salto_ks_credential'
|
|
@@ -65487,13 +65743,18 @@ export type Routes = {
|
|
|
65487
65743
|
is_issued?: boolean | undefined
|
|
65488
65744
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65489
65745
|
issued_at?: (string | undefined) | null
|
|
65490
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65491
|
-
access_method:
|
|
65746
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
65747
|
+
access_method:
|
|
65748
|
+
| 'code'
|
|
65749
|
+
| 'card'
|
|
65750
|
+
| 'mobile_key'
|
|
65751
|
+
| 'cloud_key'
|
|
65492
65752
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65493
65753
|
external_type?:
|
|
65494
65754
|
| (
|
|
65495
65755
|
| 'pti_card'
|
|
65496
65756
|
| 'brivo_credential'
|
|
65757
|
+
| 'brivo_digital_credential'
|
|
65497
65758
|
| 'hid_credential'
|
|
65498
65759
|
| 'visionline_card'
|
|
65499
65760
|
| 'salto_ks_credential'
|
|
@@ -65716,13 +65977,14 @@ export type Routes = {
|
|
|
65716
65977
|
is_issued?: boolean | undefined
|
|
65717
65978
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65718
65979
|
issued_at?: (string | undefined) | null
|
|
65719
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65720
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
65980
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
65981
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
65721
65982
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65722
65983
|
external_type?:
|
|
65723
65984
|
| (
|
|
65724
65985
|
| 'pti_card'
|
|
65725
65986
|
| 'brivo_credential'
|
|
65987
|
+
| 'brivo_digital_credential'
|
|
65726
65988
|
| 'hid_credential'
|
|
65727
65989
|
| 'visionline_card'
|
|
65728
65990
|
| 'salto_ks_credential'
|
|
@@ -65875,13 +66137,14 @@ export type Routes = {
|
|
|
65875
66137
|
is_issued?: boolean | undefined
|
|
65876
66138
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65877
66139
|
issued_at?: (string | undefined) | null
|
|
65878
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65879
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
66140
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
66141
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
65880
66142
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65881
66143
|
external_type?:
|
|
65882
66144
|
| (
|
|
65883
66145
|
| 'pti_card'
|
|
65884
66146
|
| 'brivo_credential'
|
|
66147
|
+
| 'brivo_digital_credential'
|
|
65885
66148
|
| 'hid_credential'
|
|
65886
66149
|
| 'visionline_card'
|
|
65887
66150
|
| 'salto_ks_credential'
|
|
@@ -67824,13 +68087,18 @@ export type Routes = {
|
|
|
67824
68087
|
is_issued?: boolean | undefined
|
|
67825
68088
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
67826
68089
|
issued_at?: (string | undefined) | null
|
|
67827
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
67828
|
-
access_method:
|
|
68090
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
68091
|
+
access_method:
|
|
68092
|
+
| 'code'
|
|
68093
|
+
| 'card'
|
|
68094
|
+
| 'mobile_key'
|
|
68095
|
+
| 'cloud_key'
|
|
67829
68096
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67830
68097
|
external_type?:
|
|
67831
68098
|
| (
|
|
67832
68099
|
| 'pti_card'
|
|
67833
68100
|
| 'brivo_credential'
|
|
68101
|
+
| 'brivo_digital_credential'
|
|
67834
68102
|
| 'hid_credential'
|
|
67835
68103
|
| 'visionline_card'
|
|
67836
68104
|
| 'salto_ks_credential'
|
|
@@ -67985,13 +68253,18 @@ export type Routes = {
|
|
|
67985
68253
|
is_issued?: boolean | undefined
|
|
67986
68254
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
67987
68255
|
issued_at?: (string | undefined) | null
|
|
67988
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
67989
|
-
access_method:
|
|
68256
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
68257
|
+
access_method:
|
|
68258
|
+
| 'code'
|
|
68259
|
+
| 'card'
|
|
68260
|
+
| 'mobile_key'
|
|
68261
|
+
| 'cloud_key'
|
|
67990
68262
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67991
68263
|
external_type?:
|
|
67992
68264
|
| (
|
|
67993
68265
|
| 'pti_card'
|
|
67994
68266
|
| 'brivo_credential'
|
|
68267
|
+
| 'brivo_digital_credential'
|
|
67995
68268
|
| 'hid_credential'
|
|
67996
68269
|
| 'visionline_card'
|
|
67997
68270
|
| 'salto_ks_credential'
|
|
@@ -68214,13 +68487,14 @@ export type Routes = {
|
|
|
68214
68487
|
is_issued?: boolean | undefined
|
|
68215
68488
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
68216
68489
|
issued_at?: (string | undefined) | null
|
|
68217
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
68218
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
68490
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
68491
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
68219
68492
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68220
68493
|
external_type?:
|
|
68221
68494
|
| (
|
|
68222
68495
|
| 'pti_card'
|
|
68223
68496
|
| 'brivo_credential'
|
|
68497
|
+
| 'brivo_digital_credential'
|
|
68224
68498
|
| 'hid_credential'
|
|
68225
68499
|
| 'visionline_card'
|
|
68226
68500
|
| 'salto_ks_credential'
|
|
@@ -68373,13 +68647,14 @@ export type Routes = {
|
|
|
68373
68647
|
is_issued?: boolean | undefined
|
|
68374
68648
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
68375
68649
|
issued_at?: (string | undefined) | null
|
|
68376
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
68377
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
68650
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
68651
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
68378
68652
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68379
68653
|
external_type?:
|
|
68380
68654
|
| (
|
|
68381
68655
|
| 'pti_card'
|
|
68382
68656
|
| 'brivo_credential'
|
|
68657
|
+
| 'brivo_digital_credential'
|
|
68383
68658
|
| 'hid_credential'
|
|
68384
68659
|
| 'visionline_card'
|
|
68385
68660
|
| 'salto_ks_credential'
|
|
@@ -74273,13 +74548,14 @@ export type Routes = {
|
|
|
74273
74548
|
is_issued?: boolean | undefined
|
|
74274
74549
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
74275
74550
|
issued_at?: (string | undefined) | null
|
|
74276
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
74277
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
74551
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
74552
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
74278
74553
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
74279
74554
|
external_type?:
|
|
74280
74555
|
| (
|
|
74281
74556
|
| 'pti_card'
|
|
74282
74557
|
| 'brivo_credential'
|
|
74558
|
+
| 'brivo_digital_credential'
|
|
74283
74559
|
| 'hid_credential'
|
|
74284
74560
|
| 'visionline_card'
|
|
74285
74561
|
| 'salto_ks_credential'
|
|
@@ -74470,13 +74746,14 @@ export type Routes = {
|
|
|
74470
74746
|
is_issued?: boolean | undefined
|
|
74471
74747
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
74472
74748
|
issued_at?: (string | undefined) | null
|
|
74473
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
74474
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
74749
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
74750
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
74475
74751
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
74476
74752
|
external_type?:
|
|
74477
74753
|
| (
|
|
74478
74754
|
| 'pti_card'
|
|
74479
74755
|
| 'brivo_credential'
|
|
74756
|
+
| 'brivo_digital_credential'
|
|
74480
74757
|
| 'hid_credential'
|
|
74481
74758
|
| 'visionline_card'
|
|
74482
74759
|
| 'salto_ks_credential'
|
|
@@ -77251,6 +77528,16 @@ export type Routes = {
|
|
|
77251
77528
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77252
77529
|
warning_code: 'updating_access_times'
|
|
77253
77530
|
}
|
|
77531
|
+
| {
|
|
77532
|
+
/** Date and time at which Seam created the warning. */
|
|
77533
|
+
created_at: string
|
|
77534
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77535
|
+
message: string
|
|
77536
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77537
|
+
warning_code: 'pulled_backup_access_code'
|
|
77538
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
77539
|
+
original_access_method_id?: string | undefined
|
|
77540
|
+
}
|
|
77254
77541
|
)[]
|
|
77255
77542
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
77256
77543
|
pending_mutations: (
|
|
@@ -77632,13 +77919,18 @@ export type Routes = {
|
|
|
77632
77919
|
is_issued?: boolean | undefined
|
|
77633
77920
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
77634
77921
|
issued_at?: (string | undefined) | null
|
|
77635
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
77636
|
-
access_method:
|
|
77922
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
77923
|
+
access_method:
|
|
77924
|
+
| 'code'
|
|
77925
|
+
| 'card'
|
|
77926
|
+
| 'mobile_key'
|
|
77927
|
+
| 'cloud_key'
|
|
77637
77928
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
77638
77929
|
external_type?:
|
|
77639
77930
|
| (
|
|
77640
77931
|
| 'pti_card'
|
|
77641
77932
|
| 'brivo_credential'
|
|
77933
|
+
| 'brivo_digital_credential'
|
|
77642
77934
|
| 'hid_credential'
|
|
77643
77935
|
| 'visionline_card'
|
|
77644
77936
|
| 'salto_ks_credential'
|
|
@@ -77793,13 +78085,18 @@ export type Routes = {
|
|
|
77793
78085
|
is_issued?: boolean | undefined
|
|
77794
78086
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
77795
78087
|
issued_at?: (string | undefined) | null
|
|
77796
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
77797
|
-
access_method:
|
|
78088
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78089
|
+
access_method:
|
|
78090
|
+
| 'code'
|
|
78091
|
+
| 'card'
|
|
78092
|
+
| 'mobile_key'
|
|
78093
|
+
| 'cloud_key'
|
|
77798
78094
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
77799
78095
|
external_type?:
|
|
77800
78096
|
| (
|
|
77801
78097
|
| 'pti_card'
|
|
77802
78098
|
| 'brivo_credential'
|
|
78099
|
+
| 'brivo_digital_credential'
|
|
77803
78100
|
| 'hid_credential'
|
|
77804
78101
|
| 'visionline_card'
|
|
77805
78102
|
| 'salto_ks_credential'
|
|
@@ -78022,13 +78319,14 @@ export type Routes = {
|
|
|
78022
78319
|
is_issued?: boolean | undefined
|
|
78023
78320
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
78024
78321
|
issued_at?: (string | undefined) | null
|
|
78025
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
78026
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
78322
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78323
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
78027
78324
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78028
78325
|
external_type?:
|
|
78029
78326
|
| (
|
|
78030
78327
|
| 'pti_card'
|
|
78031
78328
|
| 'brivo_credential'
|
|
78329
|
+
| 'brivo_digital_credential'
|
|
78032
78330
|
| 'hid_credential'
|
|
78033
78331
|
| 'visionline_card'
|
|
78034
78332
|
| 'salto_ks_credential'
|
|
@@ -78181,13 +78479,14 @@ export type Routes = {
|
|
|
78181
78479
|
is_issued?: boolean | undefined
|
|
78182
78480
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
78183
78481
|
issued_at?: (string | undefined) | null
|
|
78184
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
78185
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
78482
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78483
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
78186
78484
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78187
78485
|
external_type?:
|
|
78188
78486
|
| (
|
|
78189
78487
|
| 'pti_card'
|
|
78190
78488
|
| 'brivo_credential'
|
|
78489
|
+
| 'brivo_digital_credential'
|
|
78191
78490
|
| 'hid_credential'
|
|
78192
78491
|
| 'visionline_card'
|
|
78193
78492
|
| 'salto_ks_credential'
|
|
@@ -79104,13 +79403,18 @@ export type Routes = {
|
|
|
79104
79403
|
is_issued?: boolean | undefined
|
|
79105
79404
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79106
79405
|
issued_at?: (string | undefined) | null
|
|
79107
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79108
|
-
access_method:
|
|
79406
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
79407
|
+
access_method:
|
|
79408
|
+
| 'code'
|
|
79409
|
+
| 'card'
|
|
79410
|
+
| 'mobile_key'
|
|
79411
|
+
| 'cloud_key'
|
|
79109
79412
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
79110
79413
|
external_type?:
|
|
79111
79414
|
| (
|
|
79112
79415
|
| 'pti_card'
|
|
79113
79416
|
| 'brivo_credential'
|
|
79417
|
+
| 'brivo_digital_credential'
|
|
79114
79418
|
| 'hid_credential'
|
|
79115
79419
|
| 'visionline_card'
|
|
79116
79420
|
| 'salto_ks_credential'
|
|
@@ -79265,13 +79569,18 @@ export type Routes = {
|
|
|
79265
79569
|
is_issued?: boolean | undefined
|
|
79266
79570
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79267
79571
|
issued_at?: (string | undefined) | null
|
|
79268
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79269
|
-
access_method:
|
|
79572
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
79573
|
+
access_method:
|
|
79574
|
+
| 'code'
|
|
79575
|
+
| 'card'
|
|
79576
|
+
| 'mobile_key'
|
|
79577
|
+
| 'cloud_key'
|
|
79270
79578
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
79271
79579
|
external_type?:
|
|
79272
79580
|
| (
|
|
79273
79581
|
| 'pti_card'
|
|
79274
79582
|
| 'brivo_credential'
|
|
79583
|
+
| 'brivo_digital_credential'
|
|
79275
79584
|
| 'hid_credential'
|
|
79276
79585
|
| 'visionline_card'
|
|
79277
79586
|
| 'salto_ks_credential'
|
|
@@ -79494,13 +79803,14 @@ export type Routes = {
|
|
|
79494
79803
|
is_issued?: boolean | undefined
|
|
79495
79804
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79496
79805
|
issued_at?: (string | undefined) | null
|
|
79497
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79498
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
79806
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
79807
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
79499
79808
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
79500
79809
|
external_type?:
|
|
79501
79810
|
| (
|
|
79502
79811
|
| 'pti_card'
|
|
79503
79812
|
| 'brivo_credential'
|
|
79813
|
+
| 'brivo_digital_credential'
|
|
79504
79814
|
| 'hid_credential'
|
|
79505
79815
|
| 'visionline_card'
|
|
79506
79816
|
| 'salto_ks_credential'
|
|
@@ -79653,13 +79963,14 @@ export type Routes = {
|
|
|
79653
79963
|
is_issued?: boolean | undefined
|
|
79654
79964
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79655
79965
|
issued_at?: (string | undefined) | null
|
|
79656
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79657
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
79966
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
79967
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
79658
79968
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
79659
79969
|
external_type?:
|
|
79660
79970
|
| (
|
|
79661
79971
|
| 'pti_card'
|
|
79662
79972
|
| 'brivo_credential'
|
|
79973
|
+
| 'brivo_digital_credential'
|
|
79663
79974
|
| 'hid_credential'
|
|
79664
79975
|
| 'visionline_card'
|
|
79665
79976
|
| 'salto_ks_credential'
|
|
@@ -80688,13 +80999,18 @@ export type Routes = {
|
|
|
80688
80999
|
is_issued?: boolean | undefined
|
|
80689
81000
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
80690
81001
|
issued_at?: (string | undefined) | null
|
|
80691
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
80692
|
-
access_method:
|
|
81002
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
81003
|
+
access_method:
|
|
81004
|
+
| 'code'
|
|
81005
|
+
| 'card'
|
|
81006
|
+
| 'mobile_key'
|
|
81007
|
+
| 'cloud_key'
|
|
80693
81008
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
80694
81009
|
external_type?:
|
|
80695
81010
|
| (
|
|
80696
81011
|
| 'pti_card'
|
|
80697
81012
|
| 'brivo_credential'
|
|
81013
|
+
| 'brivo_digital_credential'
|
|
80698
81014
|
| 'hid_credential'
|
|
80699
81015
|
| 'visionline_card'
|
|
80700
81016
|
| 'salto_ks_credential'
|
|
@@ -80849,13 +81165,18 @@ export type Routes = {
|
|
|
80849
81165
|
is_issued?: boolean | undefined
|
|
80850
81166
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
80851
81167
|
issued_at?: (string | undefined) | null
|
|
80852
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
80853
|
-
access_method:
|
|
81168
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
81169
|
+
access_method:
|
|
81170
|
+
| 'code'
|
|
81171
|
+
| 'card'
|
|
81172
|
+
| 'mobile_key'
|
|
81173
|
+
| 'cloud_key'
|
|
80854
81174
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
80855
81175
|
external_type?:
|
|
80856
81176
|
| (
|
|
80857
81177
|
| 'pti_card'
|
|
80858
81178
|
| 'brivo_credential'
|
|
81179
|
+
| 'brivo_digital_credential'
|
|
80859
81180
|
| 'hid_credential'
|
|
80860
81181
|
| 'visionline_card'
|
|
80861
81182
|
| 'salto_ks_credential'
|
|
@@ -81078,13 +81399,14 @@ export type Routes = {
|
|
|
81078
81399
|
is_issued?: boolean | undefined
|
|
81079
81400
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
81080
81401
|
issued_at?: (string | undefined) | null
|
|
81081
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
81082
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
81402
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
81403
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
81083
81404
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
81084
81405
|
external_type?:
|
|
81085
81406
|
| (
|
|
81086
81407
|
| 'pti_card'
|
|
81087
81408
|
| 'brivo_credential'
|
|
81409
|
+
| 'brivo_digital_credential'
|
|
81088
81410
|
| 'hid_credential'
|
|
81089
81411
|
| 'visionline_card'
|
|
81090
81412
|
| 'salto_ks_credential'
|
|
@@ -81237,13 +81559,14 @@ export type Routes = {
|
|
|
81237
81559
|
is_issued?: boolean | undefined
|
|
81238
81560
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
81239
81561
|
issued_at?: (string | undefined) | null
|
|
81240
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
81241
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
81562
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
81563
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
81242
81564
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
81243
81565
|
external_type?:
|
|
81244
81566
|
| (
|
|
81245
81567
|
| 'pti_card'
|
|
81246
81568
|
| 'brivo_credential'
|
|
81569
|
+
| 'brivo_digital_credential'
|
|
81247
81570
|
| 'hid_credential'
|
|
81248
81571
|
| 'visionline_card'
|
|
81249
81572
|
| 'salto_ks_credential'
|
|
@@ -83819,13 +84142,18 @@ export type Routes = {
|
|
|
83819
84142
|
is_issued?: boolean | undefined
|
|
83820
84143
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
83821
84144
|
issued_at?: (string | undefined) | null
|
|
83822
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
83823
|
-
access_method:
|
|
84145
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84146
|
+
access_method:
|
|
84147
|
+
| 'code'
|
|
84148
|
+
| 'card'
|
|
84149
|
+
| 'mobile_key'
|
|
84150
|
+
| 'cloud_key'
|
|
83824
84151
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83825
84152
|
external_type?:
|
|
83826
84153
|
| (
|
|
83827
84154
|
| 'pti_card'
|
|
83828
84155
|
| 'brivo_credential'
|
|
84156
|
+
| 'brivo_digital_credential'
|
|
83829
84157
|
| 'hid_credential'
|
|
83830
84158
|
| 'visionline_card'
|
|
83831
84159
|
| 'salto_ks_credential'
|
|
@@ -83980,13 +84308,18 @@ export type Routes = {
|
|
|
83980
84308
|
is_issued?: boolean | undefined
|
|
83981
84309
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
83982
84310
|
issued_at?: (string | undefined) | null
|
|
83983
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
83984
|
-
access_method:
|
|
84311
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84312
|
+
access_method:
|
|
84313
|
+
| 'code'
|
|
84314
|
+
| 'card'
|
|
84315
|
+
| 'mobile_key'
|
|
84316
|
+
| 'cloud_key'
|
|
83985
84317
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83986
84318
|
external_type?:
|
|
83987
84319
|
| (
|
|
83988
84320
|
| 'pti_card'
|
|
83989
84321
|
| 'brivo_credential'
|
|
84322
|
+
| 'brivo_digital_credential'
|
|
83990
84323
|
| 'hid_credential'
|
|
83991
84324
|
| 'visionline_card'
|
|
83992
84325
|
| 'salto_ks_credential'
|
|
@@ -84209,13 +84542,14 @@ export type Routes = {
|
|
|
84209
84542
|
is_issued?: boolean | undefined
|
|
84210
84543
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
84211
84544
|
issued_at?: (string | undefined) | null
|
|
84212
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
84213
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
84545
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84546
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
84214
84547
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84215
84548
|
external_type?:
|
|
84216
84549
|
| (
|
|
84217
84550
|
| 'pti_card'
|
|
84218
84551
|
| 'brivo_credential'
|
|
84552
|
+
| 'brivo_digital_credential'
|
|
84219
84553
|
| 'hid_credential'
|
|
84220
84554
|
| 'visionline_card'
|
|
84221
84555
|
| 'salto_ks_credential'
|
|
@@ -84368,13 +84702,14 @@ export type Routes = {
|
|
|
84368
84702
|
is_issued?: boolean | undefined
|
|
84369
84703
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
84370
84704
|
issued_at?: (string | undefined) | null
|
|
84371
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
84372
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
84705
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84706
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
84373
84707
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84374
84708
|
external_type?:
|
|
84375
84709
|
| (
|
|
84376
84710
|
| 'pti_card'
|
|
84377
84711
|
| 'brivo_credential'
|
|
84712
|
+
| 'brivo_digital_credential'
|
|
84378
84713
|
| 'hid_credential'
|
|
84379
84714
|
| 'visionline_card'
|
|
84380
84715
|
| 'salto_ks_credential'
|
|
@@ -85295,13 +85630,18 @@ export type Routes = {
|
|
|
85295
85630
|
is_issued?: boolean | undefined
|
|
85296
85631
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85297
85632
|
issued_at?: (string | undefined) | null
|
|
85298
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85299
|
-
access_method:
|
|
85633
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85634
|
+
access_method:
|
|
85635
|
+
| 'code'
|
|
85636
|
+
| 'card'
|
|
85637
|
+
| 'mobile_key'
|
|
85638
|
+
| 'cloud_key'
|
|
85300
85639
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85301
85640
|
external_type?:
|
|
85302
85641
|
| (
|
|
85303
85642
|
| 'pti_card'
|
|
85304
85643
|
| 'brivo_credential'
|
|
85644
|
+
| 'brivo_digital_credential'
|
|
85305
85645
|
| 'hid_credential'
|
|
85306
85646
|
| 'visionline_card'
|
|
85307
85647
|
| 'salto_ks_credential'
|
|
@@ -85456,13 +85796,18 @@ export type Routes = {
|
|
|
85456
85796
|
is_issued?: boolean | undefined
|
|
85457
85797
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85458
85798
|
issued_at?: (string | undefined) | null
|
|
85459
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85460
|
-
access_method:
|
|
85799
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85800
|
+
access_method:
|
|
85801
|
+
| 'code'
|
|
85802
|
+
| 'card'
|
|
85803
|
+
| 'mobile_key'
|
|
85804
|
+
| 'cloud_key'
|
|
85461
85805
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85462
85806
|
external_type?:
|
|
85463
85807
|
| (
|
|
85464
85808
|
| 'pti_card'
|
|
85465
85809
|
| 'brivo_credential'
|
|
85810
|
+
| 'brivo_digital_credential'
|
|
85466
85811
|
| 'hid_credential'
|
|
85467
85812
|
| 'visionline_card'
|
|
85468
85813
|
| 'salto_ks_credential'
|
|
@@ -85685,13 +86030,14 @@ export type Routes = {
|
|
|
85685
86030
|
is_issued?: boolean | undefined
|
|
85686
86031
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85687
86032
|
issued_at?: (string | undefined) | null
|
|
85688
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85689
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
86033
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
86034
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
85690
86035
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85691
86036
|
external_type?:
|
|
85692
86037
|
| (
|
|
85693
86038
|
| 'pti_card'
|
|
85694
86039
|
| 'brivo_credential'
|
|
86040
|
+
| 'brivo_digital_credential'
|
|
85695
86041
|
| 'hid_credential'
|
|
85696
86042
|
| 'visionline_card'
|
|
85697
86043
|
| 'salto_ks_credential'
|
|
@@ -85844,13 +86190,14 @@ export type Routes = {
|
|
|
85844
86190
|
is_issued?: boolean | undefined
|
|
85845
86191
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85846
86192
|
issued_at?: (string | undefined) | null
|
|
85847
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85848
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
86193
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
86194
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
85849
86195
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85850
86196
|
external_type?:
|
|
85851
86197
|
| (
|
|
85852
86198
|
| 'pti_card'
|
|
85853
86199
|
| 'brivo_credential'
|
|
86200
|
+
| 'brivo_digital_credential'
|
|
85854
86201
|
| 'hid_credential'
|
|
85855
86202
|
| 'visionline_card'
|
|
85856
86203
|
| 'salto_ks_credential'
|
|
@@ -90141,13 +90488,18 @@ export type Routes = {
|
|
|
90141
90488
|
is_issued?: boolean | undefined
|
|
90142
90489
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90143
90490
|
issued_at?: (string | undefined) | null
|
|
90144
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90145
|
-
access_method:
|
|
90491
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
90492
|
+
access_method:
|
|
90493
|
+
| 'code'
|
|
90494
|
+
| 'card'
|
|
90495
|
+
| 'mobile_key'
|
|
90496
|
+
| 'cloud_key'
|
|
90146
90497
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
90147
90498
|
external_type?:
|
|
90148
90499
|
| (
|
|
90149
90500
|
| 'pti_card'
|
|
90150
90501
|
| 'brivo_credential'
|
|
90502
|
+
| 'brivo_digital_credential'
|
|
90151
90503
|
| 'hid_credential'
|
|
90152
90504
|
| 'visionline_card'
|
|
90153
90505
|
| 'salto_ks_credential'
|
|
@@ -90302,13 +90654,18 @@ export type Routes = {
|
|
|
90302
90654
|
is_issued?: boolean | undefined
|
|
90303
90655
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90304
90656
|
issued_at?: (string | undefined) | null
|
|
90305
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90306
|
-
access_method:
|
|
90657
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
90658
|
+
access_method:
|
|
90659
|
+
| 'code'
|
|
90660
|
+
| 'card'
|
|
90661
|
+
| 'mobile_key'
|
|
90662
|
+
| 'cloud_key'
|
|
90307
90663
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
90308
90664
|
external_type?:
|
|
90309
90665
|
| (
|
|
90310
90666
|
| 'pti_card'
|
|
90311
90667
|
| 'brivo_credential'
|
|
90668
|
+
| 'brivo_digital_credential'
|
|
90312
90669
|
| 'hid_credential'
|
|
90313
90670
|
| 'visionline_card'
|
|
90314
90671
|
| 'salto_ks_credential'
|
|
@@ -90531,13 +90888,14 @@ export type Routes = {
|
|
|
90531
90888
|
is_issued?: boolean | undefined
|
|
90532
90889
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90533
90890
|
issued_at?: (string | undefined) | null
|
|
90534
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90535
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
90891
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
90892
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
90536
90893
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
90537
90894
|
external_type?:
|
|
90538
90895
|
| (
|
|
90539
90896
|
| 'pti_card'
|
|
90540
90897
|
| 'brivo_credential'
|
|
90898
|
+
| 'brivo_digital_credential'
|
|
90541
90899
|
| 'hid_credential'
|
|
90542
90900
|
| 'visionline_card'
|
|
90543
90901
|
| 'salto_ks_credential'
|
|
@@ -90690,13 +91048,14 @@ export type Routes = {
|
|
|
90690
91048
|
is_issued?: boolean | undefined
|
|
90691
91049
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90692
91050
|
issued_at?: (string | undefined) | null
|
|
90693
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90694
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
91051
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
91052
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
90695
91053
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
90696
91054
|
external_type?:
|
|
90697
91055
|
| (
|
|
90698
91056
|
| 'pti_card'
|
|
90699
91057
|
| 'brivo_credential'
|
|
91058
|
+
| 'brivo_digital_credential'
|
|
90700
91059
|
| 'hid_credential'
|
|
90701
91060
|
| 'visionline_card'
|
|
90702
91061
|
| 'salto_ks_credential'
|
|
@@ -91812,13 +92171,18 @@ export type Routes = {
|
|
|
91812
92171
|
is_issued?: boolean | undefined
|
|
91813
92172
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
91814
92173
|
issued_at?: (string | undefined) | null
|
|
91815
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
91816
|
-
access_method:
|
|
92174
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92175
|
+
access_method:
|
|
92176
|
+
| 'code'
|
|
92177
|
+
| 'card'
|
|
92178
|
+
| 'mobile_key'
|
|
92179
|
+
| 'cloud_key'
|
|
91817
92180
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
91818
92181
|
external_type?:
|
|
91819
92182
|
| (
|
|
91820
92183
|
| 'pti_card'
|
|
91821
92184
|
| 'brivo_credential'
|
|
92185
|
+
| 'brivo_digital_credential'
|
|
91822
92186
|
| 'hid_credential'
|
|
91823
92187
|
| 'visionline_card'
|
|
91824
92188
|
| 'salto_ks_credential'
|
|
@@ -91973,13 +92337,18 @@ export type Routes = {
|
|
|
91973
92337
|
is_issued?: boolean | undefined
|
|
91974
92338
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
91975
92339
|
issued_at?: (string | undefined) | null
|
|
91976
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
91977
|
-
access_method:
|
|
92340
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92341
|
+
access_method:
|
|
92342
|
+
| 'code'
|
|
92343
|
+
| 'card'
|
|
92344
|
+
| 'mobile_key'
|
|
92345
|
+
| 'cloud_key'
|
|
91978
92346
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
91979
92347
|
external_type?:
|
|
91980
92348
|
| (
|
|
91981
92349
|
| 'pti_card'
|
|
91982
92350
|
| 'brivo_credential'
|
|
92351
|
+
| 'brivo_digital_credential'
|
|
91983
92352
|
| 'hid_credential'
|
|
91984
92353
|
| 'visionline_card'
|
|
91985
92354
|
| 'salto_ks_credential'
|
|
@@ -92202,13 +92571,14 @@ export type Routes = {
|
|
|
92202
92571
|
is_issued?: boolean | undefined
|
|
92203
92572
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
92204
92573
|
issued_at?: (string | undefined) | null
|
|
92205
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
92206
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
92574
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92575
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
92207
92576
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92208
92577
|
external_type?:
|
|
92209
92578
|
| (
|
|
92210
92579
|
| 'pti_card'
|
|
92211
92580
|
| 'brivo_credential'
|
|
92581
|
+
| 'brivo_digital_credential'
|
|
92212
92582
|
| 'hid_credential'
|
|
92213
92583
|
| 'visionline_card'
|
|
92214
92584
|
| 'salto_ks_credential'
|
|
@@ -92361,13 +92731,14 @@ export type Routes = {
|
|
|
92361
92731
|
is_issued?: boolean | undefined
|
|
92362
92732
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
92363
92733
|
issued_at?: (string | undefined) | null
|
|
92364
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
92365
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
92734
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92735
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
92366
92736
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92367
92737
|
external_type?:
|
|
92368
92738
|
| (
|
|
92369
92739
|
| 'pti_card'
|
|
92370
92740
|
| 'brivo_credential'
|
|
92741
|
+
| 'brivo_digital_credential'
|
|
92371
92742
|
| 'hid_credential'
|
|
92372
92743
|
| 'visionline_card'
|
|
92373
92744
|
| 'salto_ks_credential'
|
|
@@ -93316,13 +93687,18 @@ export type Routes = {
|
|
|
93316
93687
|
is_issued?: boolean | undefined
|
|
93317
93688
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93318
93689
|
issued_at?: (string | undefined) | null
|
|
93319
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93320
|
-
access_method:
|
|
93690
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93691
|
+
access_method:
|
|
93692
|
+
| 'code'
|
|
93693
|
+
| 'card'
|
|
93694
|
+
| 'mobile_key'
|
|
93695
|
+
| 'cloud_key'
|
|
93321
93696
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93322
93697
|
external_type?:
|
|
93323
93698
|
| (
|
|
93324
93699
|
| 'pti_card'
|
|
93325
93700
|
| 'brivo_credential'
|
|
93701
|
+
| 'brivo_digital_credential'
|
|
93326
93702
|
| 'hid_credential'
|
|
93327
93703
|
| 'visionline_card'
|
|
93328
93704
|
| 'salto_ks_credential'
|
|
@@ -93477,13 +93853,18 @@ export type Routes = {
|
|
|
93477
93853
|
is_issued?: boolean | undefined
|
|
93478
93854
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93479
93855
|
issued_at?: (string | undefined) | null
|
|
93480
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93481
|
-
access_method:
|
|
93856
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93857
|
+
access_method:
|
|
93858
|
+
| 'code'
|
|
93859
|
+
| 'card'
|
|
93860
|
+
| 'mobile_key'
|
|
93861
|
+
| 'cloud_key'
|
|
93482
93862
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93483
93863
|
external_type?:
|
|
93484
93864
|
| (
|
|
93485
93865
|
| 'pti_card'
|
|
93486
93866
|
| 'brivo_credential'
|
|
93867
|
+
| 'brivo_digital_credential'
|
|
93487
93868
|
| 'hid_credential'
|
|
93488
93869
|
| 'visionline_card'
|
|
93489
93870
|
| 'salto_ks_credential'
|
|
@@ -93706,13 +94087,14 @@ export type Routes = {
|
|
|
93706
94087
|
is_issued?: boolean | undefined
|
|
93707
94088
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93708
94089
|
issued_at?: (string | undefined) | null
|
|
93709
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93710
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
94090
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
94091
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
93711
94092
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93712
94093
|
external_type?:
|
|
93713
94094
|
| (
|
|
93714
94095
|
| 'pti_card'
|
|
93715
94096
|
| 'brivo_credential'
|
|
94097
|
+
| 'brivo_digital_credential'
|
|
93716
94098
|
| 'hid_credential'
|
|
93717
94099
|
| 'visionline_card'
|
|
93718
94100
|
| 'salto_ks_credential'
|
|
@@ -93865,13 +94247,14 @@ export type Routes = {
|
|
|
93865
94247
|
is_issued?: boolean | undefined
|
|
93866
94248
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93867
94249
|
issued_at?: (string | undefined) | null
|
|
93868
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93869
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
94250
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
94251
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
93870
94252
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93871
94253
|
external_type?:
|
|
93872
94254
|
| (
|
|
93873
94255
|
| 'pti_card'
|
|
93874
94256
|
| 'brivo_credential'
|
|
94257
|
+
| 'brivo_digital_credential'
|
|
93875
94258
|
| 'hid_credential'
|
|
93876
94259
|
| 'visionline_card'
|
|
93877
94260
|
| 'salto_ks_credential'
|
|
@@ -94937,13 +95320,18 @@ export type Routes = {
|
|
|
94937
95320
|
is_issued?: boolean | undefined
|
|
94938
95321
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
94939
95322
|
issued_at?: (string | undefined) | null
|
|
94940
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
94941
|
-
access_method:
|
|
95323
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
95324
|
+
access_method:
|
|
95325
|
+
| 'code'
|
|
95326
|
+
| 'card'
|
|
95327
|
+
| 'mobile_key'
|
|
95328
|
+
| 'cloud_key'
|
|
94942
95329
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
94943
95330
|
external_type?:
|
|
94944
95331
|
| (
|
|
94945
95332
|
| 'pti_card'
|
|
94946
95333
|
| 'brivo_credential'
|
|
95334
|
+
| 'brivo_digital_credential'
|
|
94947
95335
|
| 'hid_credential'
|
|
94948
95336
|
| 'visionline_card'
|
|
94949
95337
|
| 'salto_ks_credential'
|
|
@@ -95098,13 +95486,18 @@ export type Routes = {
|
|
|
95098
95486
|
is_issued?: boolean | undefined
|
|
95099
95487
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95100
95488
|
issued_at?: (string | undefined) | null
|
|
95101
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95102
|
-
access_method:
|
|
95489
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
95490
|
+
access_method:
|
|
95491
|
+
| 'code'
|
|
95492
|
+
| 'card'
|
|
95493
|
+
| 'mobile_key'
|
|
95494
|
+
| 'cloud_key'
|
|
95103
95495
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
95104
95496
|
external_type?:
|
|
95105
95497
|
| (
|
|
95106
95498
|
| 'pti_card'
|
|
95107
95499
|
| 'brivo_credential'
|
|
95500
|
+
| 'brivo_digital_credential'
|
|
95108
95501
|
| 'hid_credential'
|
|
95109
95502
|
| 'visionline_card'
|
|
95110
95503
|
| 'salto_ks_credential'
|
|
@@ -95327,13 +95720,14 @@ export type Routes = {
|
|
|
95327
95720
|
is_issued?: boolean | undefined
|
|
95328
95721
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95329
95722
|
issued_at?: (string | undefined) | null
|
|
95330
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95331
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
95723
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
95724
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
95332
95725
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
95333
95726
|
external_type?:
|
|
95334
95727
|
| (
|
|
95335
95728
|
| 'pti_card'
|
|
95336
95729
|
| 'brivo_credential'
|
|
95730
|
+
| 'brivo_digital_credential'
|
|
95337
95731
|
| 'hid_credential'
|
|
95338
95732
|
| 'visionline_card'
|
|
95339
95733
|
| 'salto_ks_credential'
|
|
@@ -95486,13 +95880,14 @@ export type Routes = {
|
|
|
95486
95880
|
is_issued?: boolean | undefined
|
|
95487
95881
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95488
95882
|
issued_at?: (string | undefined) | null
|
|
95489
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95490
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
95883
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
95884
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
95491
95885
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
95492
95886
|
external_type?:
|
|
95493
95887
|
| (
|
|
95494
95888
|
| 'pti_card'
|
|
95495
95889
|
| 'brivo_credential'
|
|
95890
|
+
| 'brivo_digital_credential'
|
|
95496
95891
|
| 'hid_credential'
|
|
95497
95892
|
| 'visionline_card'
|
|
95498
95893
|
| 'salto_ks_credential'
|
|
@@ -103792,13 +104187,18 @@ export type Routes = {
|
|
|
103792
104187
|
is_issued?: boolean | undefined
|
|
103793
104188
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
103794
104189
|
issued_at?: (string | undefined) | null
|
|
103795
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
103796
|
-
access_method:
|
|
104190
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
104191
|
+
access_method:
|
|
104192
|
+
| 'code'
|
|
104193
|
+
| 'card'
|
|
104194
|
+
| 'mobile_key'
|
|
104195
|
+
| 'cloud_key'
|
|
103797
104196
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
103798
104197
|
external_type?:
|
|
103799
104198
|
| (
|
|
103800
104199
|
| 'pti_card'
|
|
103801
104200
|
| 'brivo_credential'
|
|
104201
|
+
| 'brivo_digital_credential'
|
|
103802
104202
|
| 'hid_credential'
|
|
103803
104203
|
| 'visionline_card'
|
|
103804
104204
|
| 'salto_ks_credential'
|
|
@@ -103961,13 +104361,18 @@ export type Routes = {
|
|
|
103961
104361
|
is_issued?: boolean | undefined
|
|
103962
104362
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
103963
104363
|
issued_at?: (string | undefined) | null
|
|
103964
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
103965
|
-
access_method:
|
|
104364
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
104365
|
+
access_method:
|
|
104366
|
+
| 'code'
|
|
104367
|
+
| 'card'
|
|
104368
|
+
| 'mobile_key'
|
|
104369
|
+
| 'cloud_key'
|
|
103966
104370
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
103967
104371
|
external_type?:
|
|
103968
104372
|
| (
|
|
103969
104373
|
| 'pti_card'
|
|
103970
104374
|
| 'brivo_credential'
|
|
104375
|
+
| 'brivo_digital_credential'
|
|
103971
104376
|
| 'hid_credential'
|
|
103972
104377
|
| 'visionline_card'
|
|
103973
104378
|
| 'salto_ks_credential'
|
|
@@ -104198,13 +104603,18 @@ export type Routes = {
|
|
|
104198
104603
|
is_issued?: boolean | undefined
|
|
104199
104604
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
104200
104605
|
issued_at?: (string | undefined) | null
|
|
104201
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
104202
|
-
access_method:
|
|
104606
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
104607
|
+
access_method:
|
|
104608
|
+
| 'code'
|
|
104609
|
+
| 'card'
|
|
104610
|
+
| 'mobile_key'
|
|
104611
|
+
| 'cloud_key'
|
|
104203
104612
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
104204
104613
|
external_type?:
|
|
104205
104614
|
| (
|
|
104206
104615
|
| 'pti_card'
|
|
104207
104616
|
| 'brivo_credential'
|
|
104617
|
+
| 'brivo_digital_credential'
|
|
104208
104618
|
| 'hid_credential'
|
|
104209
104619
|
| 'visionline_card'
|
|
104210
104620
|
| 'salto_ks_credential'
|
|
@@ -104359,13 +104769,18 @@ export type Routes = {
|
|
|
104359
104769
|
is_issued?: boolean | undefined
|
|
104360
104770
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
104361
104771
|
issued_at?: (string | undefined) | null
|
|
104362
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
104363
|
-
access_method:
|
|
104772
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
104773
|
+
access_method:
|
|
104774
|
+
| 'code'
|
|
104775
|
+
| 'card'
|
|
104776
|
+
| 'mobile_key'
|
|
104777
|
+
| 'cloud_key'
|
|
104364
104778
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
104365
104779
|
external_type?:
|
|
104366
104780
|
| (
|
|
104367
104781
|
| 'pti_card'
|
|
104368
104782
|
| 'brivo_credential'
|
|
104783
|
+
| 'brivo_digital_credential'
|
|
104369
104784
|
| 'hid_credential'
|
|
104370
104785
|
| 'visionline_card'
|
|
104371
104786
|
| 'salto_ks_credential'
|
|
@@ -106223,6 +106638,16 @@ export type Routes = {
|
|
|
106223
106638
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106224
106639
|
warning_code: 'updating_access_times'
|
|
106225
106640
|
}
|
|
106641
|
+
| {
|
|
106642
|
+
/** Date and time at which Seam created the warning. */
|
|
106643
|
+
created_at: string
|
|
106644
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
106645
|
+
message: string
|
|
106646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106647
|
+
warning_code: 'pulled_backup_access_code'
|
|
106648
|
+
/** ID of the original access method from which this backup access method was split, if applicable. */
|
|
106649
|
+
original_access_method_id?: string | undefined
|
|
106650
|
+
}
|
|
106226
106651
|
)[]
|
|
106227
106652
|
/** Pending mutations for the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). Indicates operations that are in progress. */
|
|
106228
106653
|
pending_mutations: (
|
|
@@ -109800,13 +110225,14 @@ export type Routes = {
|
|
|
109800
110225
|
is_issued?: boolean | undefined
|
|
109801
110226
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
109802
110227
|
issued_at?: (string | undefined) | null
|
|
109803
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
109804
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
110228
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
110229
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
109805
110230
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
109806
110231
|
external_type?:
|
|
109807
110232
|
| (
|
|
109808
110233
|
| 'pti_card'
|
|
109809
110234
|
| 'brivo_credential'
|
|
110235
|
+
| 'brivo_digital_credential'
|
|
109810
110236
|
| 'hid_credential'
|
|
109811
110237
|
| 'visionline_card'
|
|
109812
110238
|
| 'salto_ks_credential'
|
|
@@ -109961,13 +110387,14 @@ export type Routes = {
|
|
|
109961
110387
|
is_issued?: boolean | undefined
|
|
109962
110388
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
109963
110389
|
issued_at?: (string | undefined) | null
|
|
109964
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
109965
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
110390
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
110391
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
109966
110392
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
109967
110393
|
external_type?:
|
|
109968
110394
|
| (
|
|
109969
110395
|
| 'pti_card'
|
|
109970
110396
|
| 'brivo_credential'
|
|
110397
|
+
| 'brivo_digital_credential'
|
|
109971
110398
|
| 'hid_credential'
|
|
109972
110399
|
| 'visionline_card'
|
|
109973
110400
|
| 'salto_ks_credential'
|
|
@@ -111558,13 +111985,18 @@ export type Routes = {
|
|
|
111558
111985
|
is_issued?: boolean | undefined
|
|
111559
111986
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
111560
111987
|
issued_at?: (string | undefined) | null
|
|
111561
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
111562
|
-
access_method:
|
|
111988
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
111989
|
+
access_method:
|
|
111990
|
+
| 'code'
|
|
111991
|
+
| 'card'
|
|
111992
|
+
| 'mobile_key'
|
|
111993
|
+
| 'cloud_key'
|
|
111563
111994
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
111564
111995
|
external_type?:
|
|
111565
111996
|
| (
|
|
111566
111997
|
| 'pti_card'
|
|
111567
111998
|
| 'brivo_credential'
|
|
111999
|
+
| 'brivo_digital_credential'
|
|
111568
112000
|
| 'hid_credential'
|
|
111569
112001
|
| 'visionline_card'
|
|
111570
112002
|
| 'salto_ks_credential'
|
|
@@ -111719,13 +112151,18 @@ export type Routes = {
|
|
|
111719
112151
|
is_issued?: boolean | undefined
|
|
111720
112152
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
111721
112153
|
issued_at?: (string | undefined) | null
|
|
111722
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
111723
|
-
access_method:
|
|
112154
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
112155
|
+
access_method:
|
|
112156
|
+
| 'code'
|
|
112157
|
+
| 'card'
|
|
112158
|
+
| 'mobile_key'
|
|
112159
|
+
| 'cloud_key'
|
|
111724
112160
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
111725
112161
|
external_type?:
|
|
111726
112162
|
| (
|
|
111727
112163
|
| 'pti_card'
|
|
111728
112164
|
| 'brivo_credential'
|
|
112165
|
+
| 'brivo_digital_credential'
|
|
111729
112166
|
| 'hid_credential'
|
|
111730
112167
|
| 'visionline_card'
|
|
111731
112168
|
| 'salto_ks_credential'
|
|
@@ -111948,13 +112385,14 @@ export type Routes = {
|
|
|
111948
112385
|
is_issued?: boolean | undefined
|
|
111949
112386
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
111950
112387
|
issued_at?: (string | undefined) | null
|
|
111951
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
111952
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
112388
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
112389
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
111953
112390
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
111954
112391
|
external_type?:
|
|
111955
112392
|
| (
|
|
111956
112393
|
| 'pti_card'
|
|
111957
112394
|
| 'brivo_credential'
|
|
112395
|
+
| 'brivo_digital_credential'
|
|
111958
112396
|
| 'hid_credential'
|
|
111959
112397
|
| 'visionline_card'
|
|
111960
112398
|
| 'salto_ks_credential'
|
|
@@ -112107,13 +112545,14 @@ export type Routes = {
|
|
|
112107
112545
|
is_issued?: boolean | undefined
|
|
112108
112546
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
112109
112547
|
issued_at?: (string | undefined) | null
|
|
112110
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
112111
|
-
access_method: 'code' | 'card' | 'mobile_key'
|
|
112548
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
112549
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key'
|
|
112112
112550
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
112113
112551
|
external_type?:
|
|
112114
112552
|
| (
|
|
112115
112553
|
| 'pti_card'
|
|
112116
112554
|
| 'brivo_credential'
|
|
112555
|
+
| 'brivo_digital_credential'
|
|
112117
112556
|
| 'hid_credential'
|
|
112118
112557
|
| 'visionline_card'
|
|
112119
112558
|
| 'salto_ks_credential'
|