@seamapi/types 1.748.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 +27 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +527 -527
- package/dist/index.cjs +27 -18
- package/dist/index.cjs.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 +84 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.js +23 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +383 -383
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +23 -16
- package/src/lib/seam/connect/route-types.ts +615 -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'
|
|
@@ -15339,13 +15387,18 @@ export type Routes = {
|
|
|
15339
15387
|
is_issued?: boolean | undefined
|
|
15340
15388
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15341
15389
|
issued_at?: (string | undefined) | null
|
|
15342
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15343
|
-
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'
|
|
15344
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`. */
|
|
15345
15397
|
external_type?:
|
|
15346
15398
|
| (
|
|
15347
15399
|
| 'pti_card'
|
|
15348
15400
|
| 'brivo_credential'
|
|
15401
|
+
| 'brivo_digital_credential'
|
|
15349
15402
|
| 'hid_credential'
|
|
15350
15403
|
| 'visionline_card'
|
|
15351
15404
|
| 'salto_ks_credential'
|
|
@@ -15500,13 +15553,18 @@ export type Routes = {
|
|
|
15500
15553
|
is_issued?: boolean | undefined
|
|
15501
15554
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15502
15555
|
issued_at?: (string | undefined) | null
|
|
15503
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15504
|
-
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'
|
|
15505
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`. */
|
|
15506
15563
|
external_type?:
|
|
15507
15564
|
| (
|
|
15508
15565
|
| 'pti_card'
|
|
15509
15566
|
| 'brivo_credential'
|
|
15567
|
+
| 'brivo_digital_credential'
|
|
15510
15568
|
| 'hid_credential'
|
|
15511
15569
|
| 'visionline_card'
|
|
15512
15570
|
| 'salto_ks_credential'
|
|
@@ -15729,13 +15787,14 @@ export type Routes = {
|
|
|
15729
15787
|
is_issued?: boolean | undefined
|
|
15730
15788
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15731
15789
|
issued_at?: (string | undefined) | null
|
|
15732
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15733
|
-
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'
|
|
15734
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`. */
|
|
15735
15793
|
external_type?:
|
|
15736
15794
|
| (
|
|
15737
15795
|
| 'pti_card'
|
|
15738
15796
|
| 'brivo_credential'
|
|
15797
|
+
| 'brivo_digital_credential'
|
|
15739
15798
|
| 'hid_credential'
|
|
15740
15799
|
| 'visionline_card'
|
|
15741
15800
|
| 'salto_ks_credential'
|
|
@@ -15888,13 +15947,14 @@ export type Routes = {
|
|
|
15888
15947
|
is_issued?: boolean | undefined
|
|
15889
15948
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
15890
15949
|
issued_at?: (string | undefined) | null
|
|
15891
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
15892
|
-
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'
|
|
15893
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`. */
|
|
15894
15953
|
external_type?:
|
|
15895
15954
|
| (
|
|
15896
15955
|
| 'pti_card'
|
|
15897
15956
|
| 'brivo_credential'
|
|
15957
|
+
| 'brivo_digital_credential'
|
|
15898
15958
|
| 'hid_credential'
|
|
15899
15959
|
| 'visionline_card'
|
|
15900
15960
|
| 'salto_ks_credential'
|
|
@@ -18997,13 +19057,14 @@ export type Routes = {
|
|
|
18997
19057
|
is_issued?: boolean | undefined
|
|
18998
19058
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
18999
19059
|
issued_at?: (string | undefined) | null
|
|
19000
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
19001
|
-
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'
|
|
19002
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`. */
|
|
19003
19063
|
external_type?:
|
|
19004
19064
|
| (
|
|
19005
19065
|
| 'pti_card'
|
|
19006
19066
|
| 'brivo_credential'
|
|
19067
|
+
| 'brivo_digital_credential'
|
|
19007
19068
|
| 'hid_credential'
|
|
19008
19069
|
| 'visionline_card'
|
|
19009
19070
|
| 'salto_ks_credential'
|
|
@@ -20935,13 +20996,14 @@ export type Routes = {
|
|
|
20935
20996
|
is_issued?: boolean | undefined
|
|
20936
20997
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
20937
20998
|
issued_at?: (string | undefined) | null
|
|
20938
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
20939
|
-
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'
|
|
20940
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`. */
|
|
20941
21002
|
external_type?:
|
|
20942
21003
|
| (
|
|
20943
21004
|
| 'pti_card'
|
|
20944
21005
|
| 'brivo_credential'
|
|
21006
|
+
| 'brivo_digital_credential'
|
|
20945
21007
|
| 'hid_credential'
|
|
20946
21008
|
| 'visionline_card'
|
|
20947
21009
|
| 'salto_ks_credential'
|
|
@@ -21085,8 +21147,8 @@ export type Routes = {
|
|
|
21085
21147
|
user_identity_id?: string | undefined
|
|
21086
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`. */
|
|
21087
21149
|
acs_system_id?: string | undefined
|
|
21088
|
-
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21089
|
-
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'
|
|
21090
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). */
|
|
21091
21153
|
code?: string | undefined
|
|
21092
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). */
|
|
@@ -21174,13 +21236,14 @@ export type Routes = {
|
|
|
21174
21236
|
is_issued?: boolean | undefined
|
|
21175
21237
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21176
21238
|
issued_at?: (string | undefined) | null
|
|
21177
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21178
|
-
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'
|
|
21179
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`. */
|
|
21180
21242
|
external_type?:
|
|
21181
21243
|
| (
|
|
21182
21244
|
| 'pti_card'
|
|
21183
21245
|
| 'brivo_credential'
|
|
21246
|
+
| 'brivo_digital_credential'
|
|
21184
21247
|
| 'hid_credential'
|
|
21185
21248
|
| 'visionline_card'
|
|
21186
21249
|
| 'salto_ks_credential'
|
|
@@ -21360,13 +21423,14 @@ export type Routes = {
|
|
|
21360
21423
|
is_issued?: boolean | undefined
|
|
21361
21424
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21362
21425
|
issued_at?: (string | undefined) | null
|
|
21363
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21364
|
-
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'
|
|
21365
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`. */
|
|
21366
21429
|
external_type?:
|
|
21367
21430
|
| (
|
|
21368
21431
|
| 'pti_card'
|
|
21369
21432
|
| 'brivo_credential'
|
|
21433
|
+
| 'brivo_digital_credential'
|
|
21370
21434
|
| 'hid_credential'
|
|
21371
21435
|
| 'visionline_card'
|
|
21372
21436
|
| 'salto_ks_credential'
|
|
@@ -21551,13 +21615,14 @@ export type Routes = {
|
|
|
21551
21615
|
is_issued?: boolean | undefined
|
|
21552
21616
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21553
21617
|
issued_at?: (string | undefined) | null
|
|
21554
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21555
|
-
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'
|
|
21556
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`. */
|
|
21557
21621
|
external_type?:
|
|
21558
21622
|
| (
|
|
21559
21623
|
| 'pti_card'
|
|
21560
21624
|
| 'brivo_credential'
|
|
21625
|
+
| 'brivo_digital_credential'
|
|
21561
21626
|
| 'hid_credential'
|
|
21562
21627
|
| 'visionline_card'
|
|
21563
21628
|
| 'salto_ks_credential'
|
|
@@ -21752,13 +21817,14 @@ export type Routes = {
|
|
|
21752
21817
|
is_issued?: boolean | undefined
|
|
21753
21818
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
21754
21819
|
issued_at?: (string | undefined) | null
|
|
21755
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
21756
|
-
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'
|
|
21757
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`. */
|
|
21758
21823
|
external_type?:
|
|
21759
21824
|
| (
|
|
21760
21825
|
| 'pti_card'
|
|
21761
21826
|
| 'brivo_credential'
|
|
21827
|
+
| 'brivo_digital_credential'
|
|
21762
21828
|
| 'hid_credential'
|
|
21763
21829
|
| 'visionline_card'
|
|
21764
21830
|
| 'salto_ks_credential'
|
|
@@ -22115,13 +22181,14 @@ export type Routes = {
|
|
|
22115
22181
|
is_issued?: boolean | undefined
|
|
22116
22182
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22117
22183
|
issued_at?: (string | undefined) | null
|
|
22118
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22119
|
-
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'
|
|
22120
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`. */
|
|
22121
22187
|
external_type?:
|
|
22122
22188
|
| (
|
|
22123
22189
|
| 'pti_card'
|
|
22124
22190
|
| 'brivo_credential'
|
|
22191
|
+
| 'brivo_digital_credential'
|
|
22125
22192
|
| 'hid_credential'
|
|
22126
22193
|
| 'visionline_card'
|
|
22127
22194
|
| 'salto_ks_credential'
|
|
@@ -22289,13 +22356,14 @@ export type Routes = {
|
|
|
22289
22356
|
is_issued?: boolean | undefined
|
|
22290
22357
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22291
22358
|
issued_at?: (string | undefined) | null
|
|
22292
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22293
|
-
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'
|
|
22294
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`. */
|
|
22295
22362
|
external_type?:
|
|
22296
22363
|
| (
|
|
22297
22364
|
| 'pti_card'
|
|
22298
22365
|
| 'brivo_credential'
|
|
22366
|
+
| 'brivo_digital_credential'
|
|
22299
22367
|
| 'hid_credential'
|
|
22300
22368
|
| 'visionline_card'
|
|
22301
22369
|
| 'salto_ks_credential'
|
|
@@ -22481,13 +22549,14 @@ export type Routes = {
|
|
|
22481
22549
|
is_issued?: boolean | undefined
|
|
22482
22550
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22483
22551
|
issued_at?: (string | undefined) | null
|
|
22484
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22485
|
-
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'
|
|
22486
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`. */
|
|
22487
22555
|
external_type?:
|
|
22488
22556
|
| (
|
|
22489
22557
|
| 'pti_card'
|
|
22490
22558
|
| 'brivo_credential'
|
|
22559
|
+
| 'brivo_digital_credential'
|
|
22491
22560
|
| 'hid_credential'
|
|
22492
22561
|
| 'visionline_card'
|
|
22493
22562
|
| 'salto_ks_credential'
|
|
@@ -22663,13 +22732,14 @@ export type Routes = {
|
|
|
22663
22732
|
is_issued?: boolean | undefined
|
|
22664
22733
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22665
22734
|
issued_at?: (string | undefined) | null
|
|
22666
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22667
|
-
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'
|
|
22668
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`. */
|
|
22669
22738
|
external_type?:
|
|
22670
22739
|
| (
|
|
22671
22740
|
| 'pti_card'
|
|
22672
22741
|
| 'brivo_credential'
|
|
22742
|
+
| 'brivo_digital_credential'
|
|
22673
22743
|
| 'hid_credential'
|
|
22674
22744
|
| 'visionline_card'
|
|
22675
22745
|
| 'salto_ks_credential'
|
|
@@ -22993,13 +23063,18 @@ export type Routes = {
|
|
|
22993
23063
|
is_issued?: boolean | undefined
|
|
22994
23064
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
22995
23065
|
issued_at?: (string | undefined) | null
|
|
22996
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
22997
|
-
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'
|
|
22998
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`. */
|
|
22999
23073
|
external_type?:
|
|
23000
23074
|
| (
|
|
23001
23075
|
| 'pti_card'
|
|
23002
23076
|
| 'brivo_credential'
|
|
23077
|
+
| 'brivo_digital_credential'
|
|
23003
23078
|
| 'hid_credential'
|
|
23004
23079
|
| 'visionline_card'
|
|
23005
23080
|
| 'salto_ks_credential'
|
|
@@ -23154,13 +23229,18 @@ export type Routes = {
|
|
|
23154
23229
|
is_issued?: boolean | undefined
|
|
23155
23230
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23156
23231
|
issued_at?: (string | undefined) | null
|
|
23157
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23158
|
-
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'
|
|
23159
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`. */
|
|
23160
23239
|
external_type?:
|
|
23161
23240
|
| (
|
|
23162
23241
|
| 'pti_card'
|
|
23163
23242
|
| 'brivo_credential'
|
|
23243
|
+
| 'brivo_digital_credential'
|
|
23164
23244
|
| 'hid_credential'
|
|
23165
23245
|
| 'visionline_card'
|
|
23166
23246
|
| 'salto_ks_credential'
|
|
@@ -23383,13 +23463,14 @@ export type Routes = {
|
|
|
23383
23463
|
is_issued?: boolean | undefined
|
|
23384
23464
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23385
23465
|
issued_at?: (string | undefined) | null
|
|
23386
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23387
|
-
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'
|
|
23388
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`. */
|
|
23389
23469
|
external_type?:
|
|
23390
23470
|
| (
|
|
23391
23471
|
| 'pti_card'
|
|
23392
23472
|
| 'brivo_credential'
|
|
23473
|
+
| 'brivo_digital_credential'
|
|
23393
23474
|
| 'hid_credential'
|
|
23394
23475
|
| 'visionline_card'
|
|
23395
23476
|
| 'salto_ks_credential'
|
|
@@ -23542,13 +23623,14 @@ export type Routes = {
|
|
|
23542
23623
|
is_issued?: boolean | undefined
|
|
23543
23624
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
23544
23625
|
issued_at?: (string | undefined) | null
|
|
23545
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
23546
|
-
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'
|
|
23547
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`. */
|
|
23548
23629
|
external_type?:
|
|
23549
23630
|
| (
|
|
23550
23631
|
| 'pti_card'
|
|
23551
23632
|
| 'brivo_credential'
|
|
23633
|
+
| 'brivo_digital_credential'
|
|
23552
23634
|
| 'hid_credential'
|
|
23553
23635
|
| 'visionline_card'
|
|
23554
23636
|
| 'salto_ks_credential'
|
|
@@ -24571,13 +24653,18 @@ export type Routes = {
|
|
|
24571
24653
|
is_issued?: boolean | undefined
|
|
24572
24654
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24573
24655
|
issued_at?: (string | undefined) | null
|
|
24574
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24575
|
-
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'
|
|
24576
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`. */
|
|
24577
24663
|
external_type?:
|
|
24578
24664
|
| (
|
|
24579
24665
|
| 'pti_card'
|
|
24580
24666
|
| 'brivo_credential'
|
|
24667
|
+
| 'brivo_digital_credential'
|
|
24581
24668
|
| 'hid_credential'
|
|
24582
24669
|
| 'visionline_card'
|
|
24583
24670
|
| 'salto_ks_credential'
|
|
@@ -24732,13 +24819,18 @@ export type Routes = {
|
|
|
24732
24819
|
is_issued?: boolean | undefined
|
|
24733
24820
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24734
24821
|
issued_at?: (string | undefined) | null
|
|
24735
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24736
|
-
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'
|
|
24737
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`. */
|
|
24738
24829
|
external_type?:
|
|
24739
24830
|
| (
|
|
24740
24831
|
| 'pti_card'
|
|
24741
24832
|
| 'brivo_credential'
|
|
24833
|
+
| 'brivo_digital_credential'
|
|
24742
24834
|
| 'hid_credential'
|
|
24743
24835
|
| 'visionline_card'
|
|
24744
24836
|
| 'salto_ks_credential'
|
|
@@ -24961,13 +25053,14 @@ export type Routes = {
|
|
|
24961
25053
|
is_issued?: boolean | undefined
|
|
24962
25054
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
24963
25055
|
issued_at?: (string | undefined) | null
|
|
24964
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
24965
|
-
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'
|
|
24966
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`. */
|
|
24967
25059
|
external_type?:
|
|
24968
25060
|
| (
|
|
24969
25061
|
| 'pti_card'
|
|
24970
25062
|
| 'brivo_credential'
|
|
25063
|
+
| 'brivo_digital_credential'
|
|
24971
25064
|
| 'hid_credential'
|
|
24972
25065
|
| 'visionline_card'
|
|
24973
25066
|
| 'salto_ks_credential'
|
|
@@ -25120,13 +25213,14 @@ export type Routes = {
|
|
|
25120
25213
|
is_issued?: boolean | undefined
|
|
25121
25214
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
25122
25215
|
issued_at?: (string | undefined) | null
|
|
25123
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
25124
|
-
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'
|
|
25125
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`. */
|
|
25126
25219
|
external_type?:
|
|
25127
25220
|
| (
|
|
25128
25221
|
| 'pti_card'
|
|
25129
25222
|
| 'brivo_credential'
|
|
25223
|
+
| 'brivo_digital_credential'
|
|
25130
25224
|
| 'hid_credential'
|
|
25131
25225
|
| 'visionline_card'
|
|
25132
25226
|
| 'salto_ks_credential'
|
|
@@ -26370,13 +26464,14 @@ export type Routes = {
|
|
|
26370
26464
|
is_issued?: boolean | undefined
|
|
26371
26465
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
26372
26466
|
issued_at?: (string | undefined) | null
|
|
26373
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
26374
|
-
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'
|
|
26375
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`. */
|
|
26376
26470
|
external_type?:
|
|
26377
26471
|
| (
|
|
26378
26472
|
| 'pti_card'
|
|
26379
26473
|
| 'brivo_credential'
|
|
26474
|
+
| 'brivo_digital_credential'
|
|
26380
26475
|
| 'hid_credential'
|
|
26381
26476
|
| 'visionline_card'
|
|
26382
26477
|
| 'salto_ks_credential'
|
|
@@ -29100,13 +29195,18 @@ export type Routes = {
|
|
|
29100
29195
|
is_issued?: boolean | undefined
|
|
29101
29196
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29102
29197
|
issued_at?: (string | undefined) | null
|
|
29103
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29104
|
-
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'
|
|
29105
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`. */
|
|
29106
29205
|
external_type?:
|
|
29107
29206
|
| (
|
|
29108
29207
|
| 'pti_card'
|
|
29109
29208
|
| 'brivo_credential'
|
|
29209
|
+
| 'brivo_digital_credential'
|
|
29110
29210
|
| 'hid_credential'
|
|
29111
29211
|
| 'visionline_card'
|
|
29112
29212
|
| 'salto_ks_credential'
|
|
@@ -29261,13 +29361,18 @@ export type Routes = {
|
|
|
29261
29361
|
is_issued?: boolean | undefined
|
|
29262
29362
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29263
29363
|
issued_at?: (string | undefined) | null
|
|
29264
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29265
|
-
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'
|
|
29266
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`. */
|
|
29267
29371
|
external_type?:
|
|
29268
29372
|
| (
|
|
29269
29373
|
| 'pti_card'
|
|
29270
29374
|
| 'brivo_credential'
|
|
29375
|
+
| 'brivo_digital_credential'
|
|
29271
29376
|
| 'hid_credential'
|
|
29272
29377
|
| 'visionline_card'
|
|
29273
29378
|
| 'salto_ks_credential'
|
|
@@ -29490,13 +29595,14 @@ export type Routes = {
|
|
|
29490
29595
|
is_issued?: boolean | undefined
|
|
29491
29596
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29492
29597
|
issued_at?: (string | undefined) | null
|
|
29493
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29494
|
-
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'
|
|
29495
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`. */
|
|
29496
29601
|
external_type?:
|
|
29497
29602
|
| (
|
|
29498
29603
|
| 'pti_card'
|
|
29499
29604
|
| 'brivo_credential'
|
|
29605
|
+
| 'brivo_digital_credential'
|
|
29500
29606
|
| 'hid_credential'
|
|
29501
29607
|
| 'visionline_card'
|
|
29502
29608
|
| 'salto_ks_credential'
|
|
@@ -29649,13 +29755,14 @@ export type Routes = {
|
|
|
29649
29755
|
is_issued?: boolean | undefined
|
|
29650
29756
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
29651
29757
|
issued_at?: (string | undefined) | null
|
|
29652
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
29653
|
-
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'
|
|
29654
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`. */
|
|
29655
29761
|
external_type?:
|
|
29656
29762
|
| (
|
|
29657
29763
|
| 'pti_card'
|
|
29658
29764
|
| 'brivo_credential'
|
|
29765
|
+
| 'brivo_digital_credential'
|
|
29659
29766
|
| 'hid_credential'
|
|
29660
29767
|
| 'visionline_card'
|
|
29661
29768
|
| 'salto_ks_credential'
|
|
@@ -30567,13 +30674,18 @@ export type Routes = {
|
|
|
30567
30674
|
is_issued?: boolean | undefined
|
|
30568
30675
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30569
30676
|
issued_at?: (string | undefined) | null
|
|
30570
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30571
|
-
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'
|
|
30572
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`. */
|
|
30573
30684
|
external_type?:
|
|
30574
30685
|
| (
|
|
30575
30686
|
| 'pti_card'
|
|
30576
30687
|
| 'brivo_credential'
|
|
30688
|
+
| 'brivo_digital_credential'
|
|
30577
30689
|
| 'hid_credential'
|
|
30578
30690
|
| 'visionline_card'
|
|
30579
30691
|
| 'salto_ks_credential'
|
|
@@ -30728,13 +30840,18 @@ export type Routes = {
|
|
|
30728
30840
|
is_issued?: boolean | undefined
|
|
30729
30841
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30730
30842
|
issued_at?: (string | undefined) | null
|
|
30731
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30732
|
-
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'
|
|
30733
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`. */
|
|
30734
30850
|
external_type?:
|
|
30735
30851
|
| (
|
|
30736
30852
|
| 'pti_card'
|
|
30737
30853
|
| 'brivo_credential'
|
|
30854
|
+
| 'brivo_digital_credential'
|
|
30738
30855
|
| 'hid_credential'
|
|
30739
30856
|
| 'visionline_card'
|
|
30740
30857
|
| 'salto_ks_credential'
|
|
@@ -30957,13 +31074,14 @@ export type Routes = {
|
|
|
30957
31074
|
is_issued?: boolean | undefined
|
|
30958
31075
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
30959
31076
|
issued_at?: (string | undefined) | null
|
|
30960
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
30961
|
-
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'
|
|
30962
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`. */
|
|
30963
31080
|
external_type?:
|
|
30964
31081
|
| (
|
|
30965
31082
|
| 'pti_card'
|
|
30966
31083
|
| 'brivo_credential'
|
|
31084
|
+
| 'brivo_digital_credential'
|
|
30967
31085
|
| 'hid_credential'
|
|
30968
31086
|
| 'visionline_card'
|
|
30969
31087
|
| 'salto_ks_credential'
|
|
@@ -31116,13 +31234,14 @@ export type Routes = {
|
|
|
31116
31234
|
is_issued?: boolean | undefined
|
|
31117
31235
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
31118
31236
|
issued_at?: (string | undefined) | null
|
|
31119
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
31120
|
-
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'
|
|
31121
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`. */
|
|
31122
31240
|
external_type?:
|
|
31123
31241
|
| (
|
|
31124
31242
|
| 'pti_card'
|
|
31125
31243
|
| 'brivo_credential'
|
|
31244
|
+
| 'brivo_digital_credential'
|
|
31126
31245
|
| 'hid_credential'
|
|
31127
31246
|
| 'visionline_card'
|
|
31128
31247
|
| 'salto_ks_credential'
|
|
@@ -53125,13 +53244,18 @@ export type Routes = {
|
|
|
53125
53244
|
is_issued?: boolean | undefined
|
|
53126
53245
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53127
53246
|
issued_at?: (string | undefined) | null
|
|
53128
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53129
|
-
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'
|
|
53130
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`. */
|
|
53131
53254
|
external_type?:
|
|
53132
53255
|
| (
|
|
53133
53256
|
| 'pti_card'
|
|
53134
53257
|
| 'brivo_credential'
|
|
53258
|
+
| 'brivo_digital_credential'
|
|
53135
53259
|
| 'hid_credential'
|
|
53136
53260
|
| 'visionline_card'
|
|
53137
53261
|
| 'salto_ks_credential'
|
|
@@ -53286,13 +53410,18 @@ export type Routes = {
|
|
|
53286
53410
|
is_issued?: boolean | undefined
|
|
53287
53411
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53288
53412
|
issued_at?: (string | undefined) | null
|
|
53289
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53290
|
-
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'
|
|
53291
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`. */
|
|
53292
53420
|
external_type?:
|
|
53293
53421
|
| (
|
|
53294
53422
|
| 'pti_card'
|
|
53295
53423
|
| 'brivo_credential'
|
|
53424
|
+
| 'brivo_digital_credential'
|
|
53296
53425
|
| 'hid_credential'
|
|
53297
53426
|
| 'visionline_card'
|
|
53298
53427
|
| 'salto_ks_credential'
|
|
@@ -53515,13 +53644,14 @@ export type Routes = {
|
|
|
53515
53644
|
is_issued?: boolean | undefined
|
|
53516
53645
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53517
53646
|
issued_at?: (string | undefined) | null
|
|
53518
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53519
|
-
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'
|
|
53520
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`. */
|
|
53521
53650
|
external_type?:
|
|
53522
53651
|
| (
|
|
53523
53652
|
| 'pti_card'
|
|
53524
53653
|
| 'brivo_credential'
|
|
53654
|
+
| 'brivo_digital_credential'
|
|
53525
53655
|
| 'hid_credential'
|
|
53526
53656
|
| 'visionline_card'
|
|
53527
53657
|
| 'salto_ks_credential'
|
|
@@ -53674,13 +53804,14 @@ export type Routes = {
|
|
|
53674
53804
|
is_issued?: boolean | undefined
|
|
53675
53805
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
53676
53806
|
issued_at?: (string | undefined) | null
|
|
53677
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
53678
|
-
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'
|
|
53679
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`. */
|
|
53680
53810
|
external_type?:
|
|
53681
53811
|
| (
|
|
53682
53812
|
| 'pti_card'
|
|
53683
53813
|
| 'brivo_credential'
|
|
53814
|
+
| 'brivo_digital_credential'
|
|
53684
53815
|
| 'hid_credential'
|
|
53685
53816
|
| 'visionline_card'
|
|
53686
53817
|
| 'salto_ks_credential'
|
|
@@ -54593,13 +54724,18 @@ export type Routes = {
|
|
|
54593
54724
|
is_issued?: boolean | undefined
|
|
54594
54725
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54595
54726
|
issued_at?: (string | undefined) | null
|
|
54596
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54597
|
-
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'
|
|
54598
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`. */
|
|
54599
54734
|
external_type?:
|
|
54600
54735
|
| (
|
|
54601
54736
|
| 'pti_card'
|
|
54602
54737
|
| 'brivo_credential'
|
|
54738
|
+
| 'brivo_digital_credential'
|
|
54603
54739
|
| 'hid_credential'
|
|
54604
54740
|
| 'visionline_card'
|
|
54605
54741
|
| 'salto_ks_credential'
|
|
@@ -54754,13 +54890,18 @@ export type Routes = {
|
|
|
54754
54890
|
is_issued?: boolean | undefined
|
|
54755
54891
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54756
54892
|
issued_at?: (string | undefined) | null
|
|
54757
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54758
|
-
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'
|
|
54759
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`. */
|
|
54760
54900
|
external_type?:
|
|
54761
54901
|
| (
|
|
54762
54902
|
| 'pti_card'
|
|
54763
54903
|
| 'brivo_credential'
|
|
54904
|
+
| 'brivo_digital_credential'
|
|
54764
54905
|
| 'hid_credential'
|
|
54765
54906
|
| 'visionline_card'
|
|
54766
54907
|
| 'salto_ks_credential'
|
|
@@ -54983,13 +55124,14 @@ export type Routes = {
|
|
|
54983
55124
|
is_issued?: boolean | undefined
|
|
54984
55125
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
54985
55126
|
issued_at?: (string | undefined) | null
|
|
54986
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
54987
|
-
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'
|
|
54988
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`. */
|
|
54989
55130
|
external_type?:
|
|
54990
55131
|
| (
|
|
54991
55132
|
| 'pti_card'
|
|
54992
55133
|
| 'brivo_credential'
|
|
55134
|
+
| 'brivo_digital_credential'
|
|
54993
55135
|
| 'hid_credential'
|
|
54994
55136
|
| 'visionline_card'
|
|
54995
55137
|
| 'salto_ks_credential'
|
|
@@ -55142,13 +55284,14 @@ export type Routes = {
|
|
|
55142
55284
|
is_issued?: boolean | undefined
|
|
55143
55285
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
55144
55286
|
issued_at?: (string | undefined) | null
|
|
55145
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
55146
|
-
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'
|
|
55147
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`. */
|
|
55148
55290
|
external_type?:
|
|
55149
55291
|
| (
|
|
55150
55292
|
| 'pti_card'
|
|
55151
55293
|
| 'brivo_credential'
|
|
55294
|
+
| 'brivo_digital_credential'
|
|
55152
55295
|
| 'hid_credential'
|
|
55153
55296
|
| 'visionline_card'
|
|
55154
55297
|
| 'salto_ks_credential'
|
|
@@ -56059,13 +56202,18 @@ export type Routes = {
|
|
|
56059
56202
|
is_issued?: boolean | undefined
|
|
56060
56203
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56061
56204
|
issued_at?: (string | undefined) | null
|
|
56062
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56063
|
-
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'
|
|
56064
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`. */
|
|
56065
56212
|
external_type?:
|
|
56066
56213
|
| (
|
|
56067
56214
|
| 'pti_card'
|
|
56068
56215
|
| 'brivo_credential'
|
|
56216
|
+
| 'brivo_digital_credential'
|
|
56069
56217
|
| 'hid_credential'
|
|
56070
56218
|
| 'visionline_card'
|
|
56071
56219
|
| 'salto_ks_credential'
|
|
@@ -56220,13 +56368,18 @@ export type Routes = {
|
|
|
56220
56368
|
is_issued?: boolean | undefined
|
|
56221
56369
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56222
56370
|
issued_at?: (string | undefined) | null
|
|
56223
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56224
|
-
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'
|
|
56225
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`. */
|
|
56226
56378
|
external_type?:
|
|
56227
56379
|
| (
|
|
56228
56380
|
| 'pti_card'
|
|
56229
56381
|
| 'brivo_credential'
|
|
56382
|
+
| 'brivo_digital_credential'
|
|
56230
56383
|
| 'hid_credential'
|
|
56231
56384
|
| 'visionline_card'
|
|
56232
56385
|
| 'salto_ks_credential'
|
|
@@ -56449,13 +56602,14 @@ export type Routes = {
|
|
|
56449
56602
|
is_issued?: boolean | undefined
|
|
56450
56603
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56451
56604
|
issued_at?: (string | undefined) | null
|
|
56452
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56453
|
-
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'
|
|
56454
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`. */
|
|
56455
56608
|
external_type?:
|
|
56456
56609
|
| (
|
|
56457
56610
|
| 'pti_card'
|
|
56458
56611
|
| 'brivo_credential'
|
|
56612
|
+
| 'brivo_digital_credential'
|
|
56459
56613
|
| 'hid_credential'
|
|
56460
56614
|
| 'visionline_card'
|
|
56461
56615
|
| 'salto_ks_credential'
|
|
@@ -56608,13 +56762,14 @@ export type Routes = {
|
|
|
56608
56762
|
is_issued?: boolean | undefined
|
|
56609
56763
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
56610
56764
|
issued_at?: (string | undefined) | null
|
|
56611
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
56612
|
-
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'
|
|
56613
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`. */
|
|
56614
56768
|
external_type?:
|
|
56615
56769
|
| (
|
|
56616
56770
|
| 'pti_card'
|
|
56617
56771
|
| 'brivo_credential'
|
|
56772
|
+
| 'brivo_digital_credential'
|
|
56618
56773
|
| 'hid_credential'
|
|
56619
56774
|
| 'visionline_card'
|
|
56620
56775
|
| 'salto_ks_credential'
|
|
@@ -57527,13 +57682,18 @@ export type Routes = {
|
|
|
57527
57682
|
is_issued?: boolean | undefined
|
|
57528
57683
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57529
57684
|
issued_at?: (string | undefined) | null
|
|
57530
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57531
|
-
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'
|
|
57532
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`. */
|
|
57533
57692
|
external_type?:
|
|
57534
57693
|
| (
|
|
57535
57694
|
| 'pti_card'
|
|
57536
57695
|
| 'brivo_credential'
|
|
57696
|
+
| 'brivo_digital_credential'
|
|
57537
57697
|
| 'hid_credential'
|
|
57538
57698
|
| 'visionline_card'
|
|
57539
57699
|
| 'salto_ks_credential'
|
|
@@ -57688,13 +57848,18 @@ export type Routes = {
|
|
|
57688
57848
|
is_issued?: boolean | undefined
|
|
57689
57849
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57690
57850
|
issued_at?: (string | undefined) | null
|
|
57691
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57692
|
-
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'
|
|
57693
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`. */
|
|
57694
57858
|
external_type?:
|
|
57695
57859
|
| (
|
|
57696
57860
|
| 'pti_card'
|
|
57697
57861
|
| 'brivo_credential'
|
|
57862
|
+
| 'brivo_digital_credential'
|
|
57698
57863
|
| 'hid_credential'
|
|
57699
57864
|
| 'visionline_card'
|
|
57700
57865
|
| 'salto_ks_credential'
|
|
@@ -57917,13 +58082,14 @@ export type Routes = {
|
|
|
57917
58082
|
is_issued?: boolean | undefined
|
|
57918
58083
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
57919
58084
|
issued_at?: (string | undefined) | null
|
|
57920
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
57921
|
-
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'
|
|
57922
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`. */
|
|
57923
58088
|
external_type?:
|
|
57924
58089
|
| (
|
|
57925
58090
|
| 'pti_card'
|
|
57926
58091
|
| 'brivo_credential'
|
|
58092
|
+
| 'brivo_digital_credential'
|
|
57927
58093
|
| 'hid_credential'
|
|
57928
58094
|
| 'visionline_card'
|
|
57929
58095
|
| 'salto_ks_credential'
|
|
@@ -58076,13 +58242,14 @@ export type Routes = {
|
|
|
58076
58242
|
is_issued?: boolean | undefined
|
|
58077
58243
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
58078
58244
|
issued_at?: (string | undefined) | null
|
|
58079
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
58080
|
-
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'
|
|
58081
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`. */
|
|
58082
58248
|
external_type?:
|
|
58083
58249
|
| (
|
|
58084
58250
|
| 'pti_card'
|
|
58085
58251
|
| 'brivo_credential'
|
|
58252
|
+
| 'brivo_digital_credential'
|
|
58086
58253
|
| 'hid_credential'
|
|
58087
58254
|
| 'visionline_card'
|
|
58088
58255
|
| 'salto_ks_credential'
|
|
@@ -62356,13 +62523,18 @@ export type Routes = {
|
|
|
62356
62523
|
is_issued?: boolean | undefined
|
|
62357
62524
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62358
62525
|
issued_at?: (string | undefined) | null
|
|
62359
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62360
|
-
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'
|
|
62361
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`. */
|
|
62362
62533
|
external_type?:
|
|
62363
62534
|
| (
|
|
62364
62535
|
| 'pti_card'
|
|
62365
62536
|
| 'brivo_credential'
|
|
62537
|
+
| 'brivo_digital_credential'
|
|
62366
62538
|
| 'hid_credential'
|
|
62367
62539
|
| 'visionline_card'
|
|
62368
62540
|
| 'salto_ks_credential'
|
|
@@ -62517,13 +62689,18 @@ export type Routes = {
|
|
|
62517
62689
|
is_issued?: boolean | undefined
|
|
62518
62690
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62519
62691
|
issued_at?: (string | undefined) | null
|
|
62520
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62521
|
-
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'
|
|
62522
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`. */
|
|
62523
62699
|
external_type?:
|
|
62524
62700
|
| (
|
|
62525
62701
|
| 'pti_card'
|
|
62526
62702
|
| 'brivo_credential'
|
|
62703
|
+
| 'brivo_digital_credential'
|
|
62527
62704
|
| 'hid_credential'
|
|
62528
62705
|
| 'visionline_card'
|
|
62529
62706
|
| 'salto_ks_credential'
|
|
@@ -62746,13 +62923,14 @@ export type Routes = {
|
|
|
62746
62923
|
is_issued?: boolean | undefined
|
|
62747
62924
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62748
62925
|
issued_at?: (string | undefined) | null
|
|
62749
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62750
|
-
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'
|
|
62751
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`. */
|
|
62752
62929
|
external_type?:
|
|
62753
62930
|
| (
|
|
62754
62931
|
| 'pti_card'
|
|
62755
62932
|
| 'brivo_credential'
|
|
62933
|
+
| 'brivo_digital_credential'
|
|
62756
62934
|
| 'hid_credential'
|
|
62757
62935
|
| 'visionline_card'
|
|
62758
62936
|
| 'salto_ks_credential'
|
|
@@ -62905,13 +63083,14 @@ export type Routes = {
|
|
|
62905
63083
|
is_issued?: boolean | undefined
|
|
62906
63084
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
62907
63085
|
issued_at?: (string | undefined) | null
|
|
62908
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
62909
|
-
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'
|
|
62910
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`. */
|
|
62911
63089
|
external_type?:
|
|
62912
63090
|
| (
|
|
62913
63091
|
| 'pti_card'
|
|
62914
63092
|
| 'brivo_credential'
|
|
63093
|
+
| 'brivo_digital_credential'
|
|
62915
63094
|
| 'hid_credential'
|
|
62916
63095
|
| 'visionline_card'
|
|
62917
63096
|
| 'salto_ks_credential'
|
|
@@ -63843,13 +64022,18 @@ export type Routes = {
|
|
|
63843
64022
|
is_issued?: boolean | undefined
|
|
63844
64023
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
63845
64024
|
issued_at?: (string | undefined) | null
|
|
63846
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
63847
|
-
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'
|
|
63848
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`. */
|
|
63849
64032
|
external_type?:
|
|
63850
64033
|
| (
|
|
63851
64034
|
| 'pti_card'
|
|
63852
64035
|
| 'brivo_credential'
|
|
64036
|
+
| 'brivo_digital_credential'
|
|
63853
64037
|
| 'hid_credential'
|
|
63854
64038
|
| 'visionline_card'
|
|
63855
64039
|
| 'salto_ks_credential'
|
|
@@ -64004,13 +64188,18 @@ export type Routes = {
|
|
|
64004
64188
|
is_issued?: boolean | undefined
|
|
64005
64189
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
64006
64190
|
issued_at?: (string | undefined) | null
|
|
64007
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
64008
|
-
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'
|
|
64009
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`. */
|
|
64010
64198
|
external_type?:
|
|
64011
64199
|
| (
|
|
64012
64200
|
| 'pti_card'
|
|
64013
64201
|
| 'brivo_credential'
|
|
64202
|
+
| 'brivo_digital_credential'
|
|
64014
64203
|
| 'hid_credential'
|
|
64015
64204
|
| 'visionline_card'
|
|
64016
64205
|
| 'salto_ks_credential'
|
|
@@ -64233,13 +64422,14 @@ export type Routes = {
|
|
|
64233
64422
|
is_issued?: boolean | undefined
|
|
64234
64423
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
64235
64424
|
issued_at?: (string | undefined) | null
|
|
64236
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
64237
|
-
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'
|
|
64238
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`. */
|
|
64239
64428
|
external_type?:
|
|
64240
64429
|
| (
|
|
64241
64430
|
| 'pti_card'
|
|
64242
64431
|
| 'brivo_credential'
|
|
64432
|
+
| 'brivo_digital_credential'
|
|
64243
64433
|
| 'hid_credential'
|
|
64244
64434
|
| 'visionline_card'
|
|
64245
64435
|
| 'salto_ks_credential'
|
|
@@ -64392,13 +64582,14 @@ export type Routes = {
|
|
|
64392
64582
|
is_issued?: boolean | undefined
|
|
64393
64583
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
64394
64584
|
issued_at?: (string | undefined) | null
|
|
64395
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
64396
|
-
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'
|
|
64397
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`. */
|
|
64398
64588
|
external_type?:
|
|
64399
64589
|
| (
|
|
64400
64590
|
| 'pti_card'
|
|
64401
64591
|
| 'brivo_credential'
|
|
64592
|
+
| 'brivo_digital_credential'
|
|
64402
64593
|
| 'hid_credential'
|
|
64403
64594
|
| 'visionline_card'
|
|
64404
64595
|
| 'salto_ks_credential'
|
|
@@ -65386,13 +65577,18 @@ export type Routes = {
|
|
|
65386
65577
|
is_issued?: boolean | undefined
|
|
65387
65578
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65388
65579
|
issued_at?: (string | undefined) | null
|
|
65389
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65390
|
-
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'
|
|
65391
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`. */
|
|
65392
65587
|
external_type?:
|
|
65393
65588
|
| (
|
|
65394
65589
|
| 'pti_card'
|
|
65395
65590
|
| 'brivo_credential'
|
|
65591
|
+
| 'brivo_digital_credential'
|
|
65396
65592
|
| 'hid_credential'
|
|
65397
65593
|
| 'visionline_card'
|
|
65398
65594
|
| 'salto_ks_credential'
|
|
@@ -65547,13 +65743,18 @@ export type Routes = {
|
|
|
65547
65743
|
is_issued?: boolean | undefined
|
|
65548
65744
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65549
65745
|
issued_at?: (string | undefined) | null
|
|
65550
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65551
|
-
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'
|
|
65552
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`. */
|
|
65553
65753
|
external_type?:
|
|
65554
65754
|
| (
|
|
65555
65755
|
| 'pti_card'
|
|
65556
65756
|
| 'brivo_credential'
|
|
65757
|
+
| 'brivo_digital_credential'
|
|
65557
65758
|
| 'hid_credential'
|
|
65558
65759
|
| 'visionline_card'
|
|
65559
65760
|
| 'salto_ks_credential'
|
|
@@ -65776,13 +65977,14 @@ export type Routes = {
|
|
|
65776
65977
|
is_issued?: boolean | undefined
|
|
65777
65978
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65778
65979
|
issued_at?: (string | undefined) | null
|
|
65779
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65780
|
-
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'
|
|
65781
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`. */
|
|
65782
65983
|
external_type?:
|
|
65783
65984
|
| (
|
|
65784
65985
|
| 'pti_card'
|
|
65785
65986
|
| 'brivo_credential'
|
|
65987
|
+
| 'brivo_digital_credential'
|
|
65786
65988
|
| 'hid_credential'
|
|
65787
65989
|
| 'visionline_card'
|
|
65788
65990
|
| 'salto_ks_credential'
|
|
@@ -65935,13 +66137,14 @@ export type Routes = {
|
|
|
65935
66137
|
is_issued?: boolean | undefined
|
|
65936
66138
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
65937
66139
|
issued_at?: (string | undefined) | null
|
|
65938
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
65939
|
-
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'
|
|
65940
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`. */
|
|
65941
66143
|
external_type?:
|
|
65942
66144
|
| (
|
|
65943
66145
|
| 'pti_card'
|
|
65944
66146
|
| 'brivo_credential'
|
|
66147
|
+
| 'brivo_digital_credential'
|
|
65945
66148
|
| 'hid_credential'
|
|
65946
66149
|
| 'visionline_card'
|
|
65947
66150
|
| 'salto_ks_credential'
|
|
@@ -67884,13 +68087,18 @@ export type Routes = {
|
|
|
67884
68087
|
is_issued?: boolean | undefined
|
|
67885
68088
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
67886
68089
|
issued_at?: (string | undefined) | null
|
|
67887
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
67888
|
-
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'
|
|
67889
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`. */
|
|
67890
68097
|
external_type?:
|
|
67891
68098
|
| (
|
|
67892
68099
|
| 'pti_card'
|
|
67893
68100
|
| 'brivo_credential'
|
|
68101
|
+
| 'brivo_digital_credential'
|
|
67894
68102
|
| 'hid_credential'
|
|
67895
68103
|
| 'visionline_card'
|
|
67896
68104
|
| 'salto_ks_credential'
|
|
@@ -68045,13 +68253,18 @@ export type Routes = {
|
|
|
68045
68253
|
is_issued?: boolean | undefined
|
|
68046
68254
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
68047
68255
|
issued_at?: (string | undefined) | null
|
|
68048
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
68049
|
-
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'
|
|
68050
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`. */
|
|
68051
68263
|
external_type?:
|
|
68052
68264
|
| (
|
|
68053
68265
|
| 'pti_card'
|
|
68054
68266
|
| 'brivo_credential'
|
|
68267
|
+
| 'brivo_digital_credential'
|
|
68055
68268
|
| 'hid_credential'
|
|
68056
68269
|
| 'visionline_card'
|
|
68057
68270
|
| 'salto_ks_credential'
|
|
@@ -68274,13 +68487,14 @@ export type Routes = {
|
|
|
68274
68487
|
is_issued?: boolean | undefined
|
|
68275
68488
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
68276
68489
|
issued_at?: (string | undefined) | null
|
|
68277
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
68278
|
-
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'
|
|
68279
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`. */
|
|
68280
68493
|
external_type?:
|
|
68281
68494
|
| (
|
|
68282
68495
|
| 'pti_card'
|
|
68283
68496
|
| 'brivo_credential'
|
|
68497
|
+
| 'brivo_digital_credential'
|
|
68284
68498
|
| 'hid_credential'
|
|
68285
68499
|
| 'visionline_card'
|
|
68286
68500
|
| 'salto_ks_credential'
|
|
@@ -68433,13 +68647,14 @@ export type Routes = {
|
|
|
68433
68647
|
is_issued?: boolean | undefined
|
|
68434
68648
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
68435
68649
|
issued_at?: (string | undefined) | null
|
|
68436
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
68437
|
-
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'
|
|
68438
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`. */
|
|
68439
68653
|
external_type?:
|
|
68440
68654
|
| (
|
|
68441
68655
|
| 'pti_card'
|
|
68442
68656
|
| 'brivo_credential'
|
|
68657
|
+
| 'brivo_digital_credential'
|
|
68443
68658
|
| 'hid_credential'
|
|
68444
68659
|
| 'visionline_card'
|
|
68445
68660
|
| 'salto_ks_credential'
|
|
@@ -74333,13 +74548,14 @@ export type Routes = {
|
|
|
74333
74548
|
is_issued?: boolean | undefined
|
|
74334
74549
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
74335
74550
|
issued_at?: (string | undefined) | null
|
|
74336
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
74337
|
-
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'
|
|
74338
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`. */
|
|
74339
74554
|
external_type?:
|
|
74340
74555
|
| (
|
|
74341
74556
|
| 'pti_card'
|
|
74342
74557
|
| 'brivo_credential'
|
|
74558
|
+
| 'brivo_digital_credential'
|
|
74343
74559
|
| 'hid_credential'
|
|
74344
74560
|
| 'visionline_card'
|
|
74345
74561
|
| 'salto_ks_credential'
|
|
@@ -74530,13 +74746,14 @@ export type Routes = {
|
|
|
74530
74746
|
is_issued?: boolean | undefined
|
|
74531
74747
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
74532
74748
|
issued_at?: (string | undefined) | null
|
|
74533
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
74534
|
-
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'
|
|
74535
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`. */
|
|
74536
74752
|
external_type?:
|
|
74537
74753
|
| (
|
|
74538
74754
|
| 'pti_card'
|
|
74539
74755
|
| 'brivo_credential'
|
|
74756
|
+
| 'brivo_digital_credential'
|
|
74540
74757
|
| 'hid_credential'
|
|
74541
74758
|
| 'visionline_card'
|
|
74542
74759
|
| 'salto_ks_credential'
|
|
@@ -77702,13 +77919,18 @@ export type Routes = {
|
|
|
77702
77919
|
is_issued?: boolean | undefined
|
|
77703
77920
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
77704
77921
|
issued_at?: (string | undefined) | null
|
|
77705
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
77706
|
-
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'
|
|
77707
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`. */
|
|
77708
77929
|
external_type?:
|
|
77709
77930
|
| (
|
|
77710
77931
|
| 'pti_card'
|
|
77711
77932
|
| 'brivo_credential'
|
|
77933
|
+
| 'brivo_digital_credential'
|
|
77712
77934
|
| 'hid_credential'
|
|
77713
77935
|
| 'visionline_card'
|
|
77714
77936
|
| 'salto_ks_credential'
|
|
@@ -77863,13 +78085,18 @@ export type Routes = {
|
|
|
77863
78085
|
is_issued?: boolean | undefined
|
|
77864
78086
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
77865
78087
|
issued_at?: (string | undefined) | null
|
|
77866
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
77867
|
-
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'
|
|
77868
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`. */
|
|
77869
78095
|
external_type?:
|
|
77870
78096
|
| (
|
|
77871
78097
|
| 'pti_card'
|
|
77872
78098
|
| 'brivo_credential'
|
|
78099
|
+
| 'brivo_digital_credential'
|
|
77873
78100
|
| 'hid_credential'
|
|
77874
78101
|
| 'visionline_card'
|
|
77875
78102
|
| 'salto_ks_credential'
|
|
@@ -78092,13 +78319,14 @@ export type Routes = {
|
|
|
78092
78319
|
is_issued?: boolean | undefined
|
|
78093
78320
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
78094
78321
|
issued_at?: (string | undefined) | null
|
|
78095
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
78096
|
-
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'
|
|
78097
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`. */
|
|
78098
78325
|
external_type?:
|
|
78099
78326
|
| (
|
|
78100
78327
|
| 'pti_card'
|
|
78101
78328
|
| 'brivo_credential'
|
|
78329
|
+
| 'brivo_digital_credential'
|
|
78102
78330
|
| 'hid_credential'
|
|
78103
78331
|
| 'visionline_card'
|
|
78104
78332
|
| 'salto_ks_credential'
|
|
@@ -78251,13 +78479,14 @@ export type Routes = {
|
|
|
78251
78479
|
is_issued?: boolean | undefined
|
|
78252
78480
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
78253
78481
|
issued_at?: (string | undefined) | null
|
|
78254
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
78255
|
-
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'
|
|
78256
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`. */
|
|
78257
78485
|
external_type?:
|
|
78258
78486
|
| (
|
|
78259
78487
|
| 'pti_card'
|
|
78260
78488
|
| 'brivo_credential'
|
|
78489
|
+
| 'brivo_digital_credential'
|
|
78261
78490
|
| 'hid_credential'
|
|
78262
78491
|
| 'visionline_card'
|
|
78263
78492
|
| 'salto_ks_credential'
|
|
@@ -79174,13 +79403,18 @@ export type Routes = {
|
|
|
79174
79403
|
is_issued?: boolean | undefined
|
|
79175
79404
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79176
79405
|
issued_at?: (string | undefined) | null
|
|
79177
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79178
|
-
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'
|
|
79179
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`. */
|
|
79180
79413
|
external_type?:
|
|
79181
79414
|
| (
|
|
79182
79415
|
| 'pti_card'
|
|
79183
79416
|
| 'brivo_credential'
|
|
79417
|
+
| 'brivo_digital_credential'
|
|
79184
79418
|
| 'hid_credential'
|
|
79185
79419
|
| 'visionline_card'
|
|
79186
79420
|
| 'salto_ks_credential'
|
|
@@ -79335,13 +79569,18 @@ export type Routes = {
|
|
|
79335
79569
|
is_issued?: boolean | undefined
|
|
79336
79570
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79337
79571
|
issued_at?: (string | undefined) | null
|
|
79338
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79339
|
-
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'
|
|
79340
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`. */
|
|
79341
79579
|
external_type?:
|
|
79342
79580
|
| (
|
|
79343
79581
|
| 'pti_card'
|
|
79344
79582
|
| 'brivo_credential'
|
|
79583
|
+
| 'brivo_digital_credential'
|
|
79345
79584
|
| 'hid_credential'
|
|
79346
79585
|
| 'visionline_card'
|
|
79347
79586
|
| 'salto_ks_credential'
|
|
@@ -79564,13 +79803,14 @@ export type Routes = {
|
|
|
79564
79803
|
is_issued?: boolean | undefined
|
|
79565
79804
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79566
79805
|
issued_at?: (string | undefined) | null
|
|
79567
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79568
|
-
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'
|
|
79569
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`. */
|
|
79570
79809
|
external_type?:
|
|
79571
79810
|
| (
|
|
79572
79811
|
| 'pti_card'
|
|
79573
79812
|
| 'brivo_credential'
|
|
79813
|
+
| 'brivo_digital_credential'
|
|
79574
79814
|
| 'hid_credential'
|
|
79575
79815
|
| 'visionline_card'
|
|
79576
79816
|
| 'salto_ks_credential'
|
|
@@ -79723,13 +79963,14 @@ export type Routes = {
|
|
|
79723
79963
|
is_issued?: boolean | undefined
|
|
79724
79964
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
79725
79965
|
issued_at?: (string | undefined) | null
|
|
79726
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
79727
|
-
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'
|
|
79728
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`. */
|
|
79729
79969
|
external_type?:
|
|
79730
79970
|
| (
|
|
79731
79971
|
| 'pti_card'
|
|
79732
79972
|
| 'brivo_credential'
|
|
79973
|
+
| 'brivo_digital_credential'
|
|
79733
79974
|
| 'hid_credential'
|
|
79734
79975
|
| 'visionline_card'
|
|
79735
79976
|
| 'salto_ks_credential'
|
|
@@ -80758,13 +80999,18 @@ export type Routes = {
|
|
|
80758
80999
|
is_issued?: boolean | undefined
|
|
80759
81000
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
80760
81001
|
issued_at?: (string | undefined) | null
|
|
80761
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
80762
|
-
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'
|
|
80763
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`. */
|
|
80764
81009
|
external_type?:
|
|
80765
81010
|
| (
|
|
80766
81011
|
| 'pti_card'
|
|
80767
81012
|
| 'brivo_credential'
|
|
81013
|
+
| 'brivo_digital_credential'
|
|
80768
81014
|
| 'hid_credential'
|
|
80769
81015
|
| 'visionline_card'
|
|
80770
81016
|
| 'salto_ks_credential'
|
|
@@ -80919,13 +81165,18 @@ export type Routes = {
|
|
|
80919
81165
|
is_issued?: boolean | undefined
|
|
80920
81166
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
80921
81167
|
issued_at?: (string | undefined) | null
|
|
80922
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
80923
|
-
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'
|
|
80924
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`. */
|
|
80925
81175
|
external_type?:
|
|
80926
81176
|
| (
|
|
80927
81177
|
| 'pti_card'
|
|
80928
81178
|
| 'brivo_credential'
|
|
81179
|
+
| 'brivo_digital_credential'
|
|
80929
81180
|
| 'hid_credential'
|
|
80930
81181
|
| 'visionline_card'
|
|
80931
81182
|
| 'salto_ks_credential'
|
|
@@ -81148,13 +81399,14 @@ export type Routes = {
|
|
|
81148
81399
|
is_issued?: boolean | undefined
|
|
81149
81400
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
81150
81401
|
issued_at?: (string | undefined) | null
|
|
81151
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
81152
|
-
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'
|
|
81153
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`. */
|
|
81154
81405
|
external_type?:
|
|
81155
81406
|
| (
|
|
81156
81407
|
| 'pti_card'
|
|
81157
81408
|
| 'brivo_credential'
|
|
81409
|
+
| 'brivo_digital_credential'
|
|
81158
81410
|
| 'hid_credential'
|
|
81159
81411
|
| 'visionline_card'
|
|
81160
81412
|
| 'salto_ks_credential'
|
|
@@ -81307,13 +81559,14 @@ export type Routes = {
|
|
|
81307
81559
|
is_issued?: boolean | undefined
|
|
81308
81560
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
81309
81561
|
issued_at?: (string | undefined) | null
|
|
81310
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
81311
|
-
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'
|
|
81312
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`. */
|
|
81313
81565
|
external_type?:
|
|
81314
81566
|
| (
|
|
81315
81567
|
| 'pti_card'
|
|
81316
81568
|
| 'brivo_credential'
|
|
81569
|
+
| 'brivo_digital_credential'
|
|
81317
81570
|
| 'hid_credential'
|
|
81318
81571
|
| 'visionline_card'
|
|
81319
81572
|
| 'salto_ks_credential'
|
|
@@ -83889,13 +84142,18 @@ export type Routes = {
|
|
|
83889
84142
|
is_issued?: boolean | undefined
|
|
83890
84143
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
83891
84144
|
issued_at?: (string | undefined) | null
|
|
83892
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
83893
|
-
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'
|
|
83894
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`. */
|
|
83895
84152
|
external_type?:
|
|
83896
84153
|
| (
|
|
83897
84154
|
| 'pti_card'
|
|
83898
84155
|
| 'brivo_credential'
|
|
84156
|
+
| 'brivo_digital_credential'
|
|
83899
84157
|
| 'hid_credential'
|
|
83900
84158
|
| 'visionline_card'
|
|
83901
84159
|
| 'salto_ks_credential'
|
|
@@ -84050,13 +84308,18 @@ export type Routes = {
|
|
|
84050
84308
|
is_issued?: boolean | undefined
|
|
84051
84309
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
84052
84310
|
issued_at?: (string | undefined) | null
|
|
84053
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
84054
|
-
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'
|
|
84055
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`. */
|
|
84056
84318
|
external_type?:
|
|
84057
84319
|
| (
|
|
84058
84320
|
| 'pti_card'
|
|
84059
84321
|
| 'brivo_credential'
|
|
84322
|
+
| 'brivo_digital_credential'
|
|
84060
84323
|
| 'hid_credential'
|
|
84061
84324
|
| 'visionline_card'
|
|
84062
84325
|
| 'salto_ks_credential'
|
|
@@ -84279,13 +84542,14 @@ export type Routes = {
|
|
|
84279
84542
|
is_issued?: boolean | undefined
|
|
84280
84543
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
84281
84544
|
issued_at?: (string | undefined) | null
|
|
84282
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
84283
|
-
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'
|
|
84284
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`. */
|
|
84285
84548
|
external_type?:
|
|
84286
84549
|
| (
|
|
84287
84550
|
| 'pti_card'
|
|
84288
84551
|
| 'brivo_credential'
|
|
84552
|
+
| 'brivo_digital_credential'
|
|
84289
84553
|
| 'hid_credential'
|
|
84290
84554
|
| 'visionline_card'
|
|
84291
84555
|
| 'salto_ks_credential'
|
|
@@ -84438,13 +84702,14 @@ export type Routes = {
|
|
|
84438
84702
|
is_issued?: boolean | undefined
|
|
84439
84703
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
84440
84704
|
issued_at?: (string | undefined) | null
|
|
84441
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
84442
|
-
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'
|
|
84443
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`. */
|
|
84444
84708
|
external_type?:
|
|
84445
84709
|
| (
|
|
84446
84710
|
| 'pti_card'
|
|
84447
84711
|
| 'brivo_credential'
|
|
84712
|
+
| 'brivo_digital_credential'
|
|
84448
84713
|
| 'hid_credential'
|
|
84449
84714
|
| 'visionline_card'
|
|
84450
84715
|
| 'salto_ks_credential'
|
|
@@ -85365,13 +85630,18 @@ export type Routes = {
|
|
|
85365
85630
|
is_issued?: boolean | undefined
|
|
85366
85631
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85367
85632
|
issued_at?: (string | undefined) | null
|
|
85368
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85369
|
-
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'
|
|
85370
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`. */
|
|
85371
85640
|
external_type?:
|
|
85372
85641
|
| (
|
|
85373
85642
|
| 'pti_card'
|
|
85374
85643
|
| 'brivo_credential'
|
|
85644
|
+
| 'brivo_digital_credential'
|
|
85375
85645
|
| 'hid_credential'
|
|
85376
85646
|
| 'visionline_card'
|
|
85377
85647
|
| 'salto_ks_credential'
|
|
@@ -85526,13 +85796,18 @@ export type Routes = {
|
|
|
85526
85796
|
is_issued?: boolean | undefined
|
|
85527
85797
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85528
85798
|
issued_at?: (string | undefined) | null
|
|
85529
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85530
|
-
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'
|
|
85531
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`. */
|
|
85532
85806
|
external_type?:
|
|
85533
85807
|
| (
|
|
85534
85808
|
| 'pti_card'
|
|
85535
85809
|
| 'brivo_credential'
|
|
85810
|
+
| 'brivo_digital_credential'
|
|
85536
85811
|
| 'hid_credential'
|
|
85537
85812
|
| 'visionline_card'
|
|
85538
85813
|
| 'salto_ks_credential'
|
|
@@ -85755,13 +86030,14 @@ export type Routes = {
|
|
|
85755
86030
|
is_issued?: boolean | undefined
|
|
85756
86031
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85757
86032
|
issued_at?: (string | undefined) | null
|
|
85758
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85759
|
-
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'
|
|
85760
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`. */
|
|
85761
86036
|
external_type?:
|
|
85762
86037
|
| (
|
|
85763
86038
|
| 'pti_card'
|
|
85764
86039
|
| 'brivo_credential'
|
|
86040
|
+
| 'brivo_digital_credential'
|
|
85765
86041
|
| 'hid_credential'
|
|
85766
86042
|
| 'visionline_card'
|
|
85767
86043
|
| 'salto_ks_credential'
|
|
@@ -85914,13 +86190,14 @@ export type Routes = {
|
|
|
85914
86190
|
is_issued?: boolean | undefined
|
|
85915
86191
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
85916
86192
|
issued_at?: (string | undefined) | null
|
|
85917
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
85918
|
-
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'
|
|
85919
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`. */
|
|
85920
86196
|
external_type?:
|
|
85921
86197
|
| (
|
|
85922
86198
|
| 'pti_card'
|
|
85923
86199
|
| 'brivo_credential'
|
|
86200
|
+
| 'brivo_digital_credential'
|
|
85924
86201
|
| 'hid_credential'
|
|
85925
86202
|
| 'visionline_card'
|
|
85926
86203
|
| 'salto_ks_credential'
|
|
@@ -90211,13 +90488,18 @@ export type Routes = {
|
|
|
90211
90488
|
is_issued?: boolean | undefined
|
|
90212
90489
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90213
90490
|
issued_at?: (string | undefined) | null
|
|
90214
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90215
|
-
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'
|
|
90216
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`. */
|
|
90217
90498
|
external_type?:
|
|
90218
90499
|
| (
|
|
90219
90500
|
| 'pti_card'
|
|
90220
90501
|
| 'brivo_credential'
|
|
90502
|
+
| 'brivo_digital_credential'
|
|
90221
90503
|
| 'hid_credential'
|
|
90222
90504
|
| 'visionline_card'
|
|
90223
90505
|
| 'salto_ks_credential'
|
|
@@ -90372,13 +90654,18 @@ export type Routes = {
|
|
|
90372
90654
|
is_issued?: boolean | undefined
|
|
90373
90655
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90374
90656
|
issued_at?: (string | undefined) | null
|
|
90375
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90376
|
-
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'
|
|
90377
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`. */
|
|
90378
90664
|
external_type?:
|
|
90379
90665
|
| (
|
|
90380
90666
|
| 'pti_card'
|
|
90381
90667
|
| 'brivo_credential'
|
|
90668
|
+
| 'brivo_digital_credential'
|
|
90382
90669
|
| 'hid_credential'
|
|
90383
90670
|
| 'visionline_card'
|
|
90384
90671
|
| 'salto_ks_credential'
|
|
@@ -90601,13 +90888,14 @@ export type Routes = {
|
|
|
90601
90888
|
is_issued?: boolean | undefined
|
|
90602
90889
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90603
90890
|
issued_at?: (string | undefined) | null
|
|
90604
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90605
|
-
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'
|
|
90606
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`. */
|
|
90607
90894
|
external_type?:
|
|
90608
90895
|
| (
|
|
90609
90896
|
| 'pti_card'
|
|
90610
90897
|
| 'brivo_credential'
|
|
90898
|
+
| 'brivo_digital_credential'
|
|
90611
90899
|
| 'hid_credential'
|
|
90612
90900
|
| 'visionline_card'
|
|
90613
90901
|
| 'salto_ks_credential'
|
|
@@ -90760,13 +91048,14 @@ export type Routes = {
|
|
|
90760
91048
|
is_issued?: boolean | undefined
|
|
90761
91049
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
90762
91050
|
issued_at?: (string | undefined) | null
|
|
90763
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
90764
|
-
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'
|
|
90765
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`. */
|
|
90766
91054
|
external_type?:
|
|
90767
91055
|
| (
|
|
90768
91056
|
| 'pti_card'
|
|
90769
91057
|
| 'brivo_credential'
|
|
91058
|
+
| 'brivo_digital_credential'
|
|
90770
91059
|
| 'hid_credential'
|
|
90771
91060
|
| 'visionline_card'
|
|
90772
91061
|
| 'salto_ks_credential'
|
|
@@ -91882,13 +92171,18 @@ export type Routes = {
|
|
|
91882
92171
|
is_issued?: boolean | undefined
|
|
91883
92172
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
91884
92173
|
issued_at?: (string | undefined) | null
|
|
91885
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
91886
|
-
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'
|
|
91887
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`. */
|
|
91888
92181
|
external_type?:
|
|
91889
92182
|
| (
|
|
91890
92183
|
| 'pti_card'
|
|
91891
92184
|
| 'brivo_credential'
|
|
92185
|
+
| 'brivo_digital_credential'
|
|
91892
92186
|
| 'hid_credential'
|
|
91893
92187
|
| 'visionline_card'
|
|
91894
92188
|
| 'salto_ks_credential'
|
|
@@ -92043,13 +92337,18 @@ export type Routes = {
|
|
|
92043
92337
|
is_issued?: boolean | undefined
|
|
92044
92338
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
92045
92339
|
issued_at?: (string | undefined) | null
|
|
92046
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
92047
|
-
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'
|
|
92048
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`. */
|
|
92049
92347
|
external_type?:
|
|
92050
92348
|
| (
|
|
92051
92349
|
| 'pti_card'
|
|
92052
92350
|
| 'brivo_credential'
|
|
92351
|
+
| 'brivo_digital_credential'
|
|
92053
92352
|
| 'hid_credential'
|
|
92054
92353
|
| 'visionline_card'
|
|
92055
92354
|
| 'salto_ks_credential'
|
|
@@ -92272,13 +92571,14 @@ export type Routes = {
|
|
|
92272
92571
|
is_issued?: boolean | undefined
|
|
92273
92572
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
92274
92573
|
issued_at?: (string | undefined) | null
|
|
92275
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
92276
|
-
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'
|
|
92277
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`. */
|
|
92278
92577
|
external_type?:
|
|
92279
92578
|
| (
|
|
92280
92579
|
| 'pti_card'
|
|
92281
92580
|
| 'brivo_credential'
|
|
92581
|
+
| 'brivo_digital_credential'
|
|
92282
92582
|
| 'hid_credential'
|
|
92283
92583
|
| 'visionline_card'
|
|
92284
92584
|
| 'salto_ks_credential'
|
|
@@ -92431,13 +92731,14 @@ export type Routes = {
|
|
|
92431
92731
|
is_issued?: boolean | undefined
|
|
92432
92732
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
92433
92733
|
issued_at?: (string | undefined) | null
|
|
92434
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
92435
|
-
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'
|
|
92436
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`. */
|
|
92437
92737
|
external_type?:
|
|
92438
92738
|
| (
|
|
92439
92739
|
| 'pti_card'
|
|
92440
92740
|
| 'brivo_credential'
|
|
92741
|
+
| 'brivo_digital_credential'
|
|
92441
92742
|
| 'hid_credential'
|
|
92442
92743
|
| 'visionline_card'
|
|
92443
92744
|
| 'salto_ks_credential'
|
|
@@ -93386,13 +93687,18 @@ export type Routes = {
|
|
|
93386
93687
|
is_issued?: boolean | undefined
|
|
93387
93688
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93388
93689
|
issued_at?: (string | undefined) | null
|
|
93389
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93390
|
-
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'
|
|
93391
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`. */
|
|
93392
93697
|
external_type?:
|
|
93393
93698
|
| (
|
|
93394
93699
|
| 'pti_card'
|
|
93395
93700
|
| 'brivo_credential'
|
|
93701
|
+
| 'brivo_digital_credential'
|
|
93396
93702
|
| 'hid_credential'
|
|
93397
93703
|
| 'visionline_card'
|
|
93398
93704
|
| 'salto_ks_credential'
|
|
@@ -93547,13 +93853,18 @@ export type Routes = {
|
|
|
93547
93853
|
is_issued?: boolean | undefined
|
|
93548
93854
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93549
93855
|
issued_at?: (string | undefined) | null
|
|
93550
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93551
|
-
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'
|
|
93552
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`. */
|
|
93553
93863
|
external_type?:
|
|
93554
93864
|
| (
|
|
93555
93865
|
| 'pti_card'
|
|
93556
93866
|
| 'brivo_credential'
|
|
93867
|
+
| 'brivo_digital_credential'
|
|
93557
93868
|
| 'hid_credential'
|
|
93558
93869
|
| 'visionline_card'
|
|
93559
93870
|
| 'salto_ks_credential'
|
|
@@ -93776,13 +94087,14 @@ export type Routes = {
|
|
|
93776
94087
|
is_issued?: boolean | undefined
|
|
93777
94088
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93778
94089
|
issued_at?: (string | undefined) | null
|
|
93779
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93780
|
-
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'
|
|
93781
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`. */
|
|
93782
94093
|
external_type?:
|
|
93783
94094
|
| (
|
|
93784
94095
|
| 'pti_card'
|
|
93785
94096
|
| 'brivo_credential'
|
|
94097
|
+
| 'brivo_digital_credential'
|
|
93786
94098
|
| 'hid_credential'
|
|
93787
94099
|
| 'visionline_card'
|
|
93788
94100
|
| 'salto_ks_credential'
|
|
@@ -93935,13 +94247,14 @@ export type Routes = {
|
|
|
93935
94247
|
is_issued?: boolean | undefined
|
|
93936
94248
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
93937
94249
|
issued_at?: (string | undefined) | null
|
|
93938
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
93939
|
-
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'
|
|
93940
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`. */
|
|
93941
94253
|
external_type?:
|
|
93942
94254
|
| (
|
|
93943
94255
|
| 'pti_card'
|
|
93944
94256
|
| 'brivo_credential'
|
|
94257
|
+
| 'brivo_digital_credential'
|
|
93945
94258
|
| 'hid_credential'
|
|
93946
94259
|
| 'visionline_card'
|
|
93947
94260
|
| 'salto_ks_credential'
|
|
@@ -95007,13 +95320,18 @@ export type Routes = {
|
|
|
95007
95320
|
is_issued?: boolean | undefined
|
|
95008
95321
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95009
95322
|
issued_at?: (string | undefined) | null
|
|
95010
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95011
|
-
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'
|
|
95012
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`. */
|
|
95013
95330
|
external_type?:
|
|
95014
95331
|
| (
|
|
95015
95332
|
| 'pti_card'
|
|
95016
95333
|
| 'brivo_credential'
|
|
95334
|
+
| 'brivo_digital_credential'
|
|
95017
95335
|
| 'hid_credential'
|
|
95018
95336
|
| 'visionline_card'
|
|
95019
95337
|
| 'salto_ks_credential'
|
|
@@ -95168,13 +95486,18 @@ export type Routes = {
|
|
|
95168
95486
|
is_issued?: boolean | undefined
|
|
95169
95487
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95170
95488
|
issued_at?: (string | undefined) | null
|
|
95171
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95172
|
-
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'
|
|
95173
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`. */
|
|
95174
95496
|
external_type?:
|
|
95175
95497
|
| (
|
|
95176
95498
|
| 'pti_card'
|
|
95177
95499
|
| 'brivo_credential'
|
|
95500
|
+
| 'brivo_digital_credential'
|
|
95178
95501
|
| 'hid_credential'
|
|
95179
95502
|
| 'visionline_card'
|
|
95180
95503
|
| 'salto_ks_credential'
|
|
@@ -95397,13 +95720,14 @@ export type Routes = {
|
|
|
95397
95720
|
is_issued?: boolean | undefined
|
|
95398
95721
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95399
95722
|
issued_at?: (string | undefined) | null
|
|
95400
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95401
|
-
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'
|
|
95402
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`. */
|
|
95403
95726
|
external_type?:
|
|
95404
95727
|
| (
|
|
95405
95728
|
| 'pti_card'
|
|
95406
95729
|
| 'brivo_credential'
|
|
95730
|
+
| 'brivo_digital_credential'
|
|
95407
95731
|
| 'hid_credential'
|
|
95408
95732
|
| 'visionline_card'
|
|
95409
95733
|
| 'salto_ks_credential'
|
|
@@ -95556,13 +95880,14 @@ export type Routes = {
|
|
|
95556
95880
|
is_issued?: boolean | undefined
|
|
95557
95881
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
95558
95882
|
issued_at?: (string | undefined) | null
|
|
95559
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
95560
|
-
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'
|
|
95561
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`. */
|
|
95562
95886
|
external_type?:
|
|
95563
95887
|
| (
|
|
95564
95888
|
| 'pti_card'
|
|
95565
95889
|
| 'brivo_credential'
|
|
95890
|
+
| 'brivo_digital_credential'
|
|
95566
95891
|
| 'hid_credential'
|
|
95567
95892
|
| 'visionline_card'
|
|
95568
95893
|
| 'salto_ks_credential'
|
|
@@ -103862,13 +104187,18 @@ export type Routes = {
|
|
|
103862
104187
|
is_issued?: boolean | undefined
|
|
103863
104188
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
103864
104189
|
issued_at?: (string | undefined) | null
|
|
103865
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
103866
|
-
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'
|
|
103867
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`. */
|
|
103868
104197
|
external_type?:
|
|
103869
104198
|
| (
|
|
103870
104199
|
| 'pti_card'
|
|
103871
104200
|
| 'brivo_credential'
|
|
104201
|
+
| 'brivo_digital_credential'
|
|
103872
104202
|
| 'hid_credential'
|
|
103873
104203
|
| 'visionline_card'
|
|
103874
104204
|
| 'salto_ks_credential'
|
|
@@ -104031,13 +104361,18 @@ export type Routes = {
|
|
|
104031
104361
|
is_issued?: boolean | undefined
|
|
104032
104362
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
104033
104363
|
issued_at?: (string | undefined) | null
|
|
104034
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
104035
|
-
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'
|
|
104036
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`. */
|
|
104037
104371
|
external_type?:
|
|
104038
104372
|
| (
|
|
104039
104373
|
| 'pti_card'
|
|
104040
104374
|
| 'brivo_credential'
|
|
104375
|
+
| 'brivo_digital_credential'
|
|
104041
104376
|
| 'hid_credential'
|
|
104042
104377
|
| 'visionline_card'
|
|
104043
104378
|
| 'salto_ks_credential'
|
|
@@ -104268,13 +104603,18 @@ export type Routes = {
|
|
|
104268
104603
|
is_issued?: boolean | undefined
|
|
104269
104604
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
104270
104605
|
issued_at?: (string | undefined) | null
|
|
104271
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
104272
|
-
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'
|
|
104273
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`. */
|
|
104274
104613
|
external_type?:
|
|
104275
104614
|
| (
|
|
104276
104615
|
| 'pti_card'
|
|
104277
104616
|
| 'brivo_credential'
|
|
104617
|
+
| 'brivo_digital_credential'
|
|
104278
104618
|
| 'hid_credential'
|
|
104279
104619
|
| 'visionline_card'
|
|
104280
104620
|
| 'salto_ks_credential'
|
|
@@ -104429,13 +104769,18 @@ export type Routes = {
|
|
|
104429
104769
|
is_issued?: boolean | undefined
|
|
104430
104770
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
104431
104771
|
issued_at?: (string | undefined) | null
|
|
104432
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
104433
|
-
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'
|
|
104434
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`. */
|
|
104435
104779
|
external_type?:
|
|
104436
104780
|
| (
|
|
104437
104781
|
| 'pti_card'
|
|
104438
104782
|
| 'brivo_credential'
|
|
104783
|
+
| 'brivo_digital_credential'
|
|
104439
104784
|
| 'hid_credential'
|
|
104440
104785
|
| 'visionline_card'
|
|
104441
104786
|
| 'salto_ks_credential'
|
|
@@ -109880,13 +110225,14 @@ export type Routes = {
|
|
|
109880
110225
|
is_issued?: boolean | undefined
|
|
109881
110226
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
109882
110227
|
issued_at?: (string | undefined) | null
|
|
109883
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
109884
|
-
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'
|
|
109885
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`. */
|
|
109886
110231
|
external_type?:
|
|
109887
110232
|
| (
|
|
109888
110233
|
| 'pti_card'
|
|
109889
110234
|
| 'brivo_credential'
|
|
110235
|
+
| 'brivo_digital_credential'
|
|
109890
110236
|
| 'hid_credential'
|
|
109891
110237
|
| 'visionline_card'
|
|
109892
110238
|
| 'salto_ks_credential'
|
|
@@ -110041,13 +110387,14 @@ export type Routes = {
|
|
|
110041
110387
|
is_issued?: boolean | undefined
|
|
110042
110388
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
110043
110389
|
issued_at?: (string | undefined) | null
|
|
110044
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
110045
|
-
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'
|
|
110046
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`. */
|
|
110047
110393
|
external_type?:
|
|
110048
110394
|
| (
|
|
110049
110395
|
| 'pti_card'
|
|
110050
110396
|
| 'brivo_credential'
|
|
110397
|
+
| 'brivo_digital_credential'
|
|
110051
110398
|
| 'hid_credential'
|
|
110052
110399
|
| 'visionline_card'
|
|
110053
110400
|
| 'salto_ks_credential'
|
|
@@ -111638,13 +111985,18 @@ export type Routes = {
|
|
|
111638
111985
|
is_issued?: boolean | undefined
|
|
111639
111986
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
111640
111987
|
issued_at?: (string | undefined) | null
|
|
111641
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
111642
|
-
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'
|
|
111643
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`. */
|
|
111644
111995
|
external_type?:
|
|
111645
111996
|
| (
|
|
111646
111997
|
| 'pti_card'
|
|
111647
111998
|
| 'brivo_credential'
|
|
111999
|
+
| 'brivo_digital_credential'
|
|
111648
112000
|
| 'hid_credential'
|
|
111649
112001
|
| 'visionline_card'
|
|
111650
112002
|
| 'salto_ks_credential'
|
|
@@ -111799,13 +112151,18 @@ export type Routes = {
|
|
|
111799
112151
|
is_issued?: boolean | undefined
|
|
111800
112152
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
111801
112153
|
issued_at?: (string | undefined) | null
|
|
111802
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
111803
|
-
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'
|
|
111804
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`. */
|
|
111805
112161
|
external_type?:
|
|
111806
112162
|
| (
|
|
111807
112163
|
| 'pti_card'
|
|
111808
112164
|
| 'brivo_credential'
|
|
112165
|
+
| 'brivo_digital_credential'
|
|
111809
112166
|
| 'hid_credential'
|
|
111810
112167
|
| 'visionline_card'
|
|
111811
112168
|
| 'salto_ks_credential'
|
|
@@ -112028,13 +112385,14 @@ export type Routes = {
|
|
|
112028
112385
|
is_issued?: boolean | undefined
|
|
112029
112386
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
112030
112387
|
issued_at?: (string | undefined) | null
|
|
112031
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
112032
|
-
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'
|
|
112033
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`. */
|
|
112034
112391
|
external_type?:
|
|
112035
112392
|
| (
|
|
112036
112393
|
| 'pti_card'
|
|
112037
112394
|
| 'brivo_credential'
|
|
112395
|
+
| 'brivo_digital_credential'
|
|
112038
112396
|
| 'hid_credential'
|
|
112039
112397
|
| 'visionline_card'
|
|
112040
112398
|
| 'salto_ks_credential'
|
|
@@ -112187,13 +112545,14 @@ export type Routes = {
|
|
|
112187
112545
|
is_issued?: boolean | undefined
|
|
112188
112546
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
112189
112547
|
issued_at?: (string | undefined) | null
|
|
112190
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
112191
|
-
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'
|
|
112192
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`. */
|
|
112193
112551
|
external_type?:
|
|
112194
112552
|
| (
|
|
112195
112553
|
| 'pti_card'
|
|
112196
112554
|
| 'brivo_credential'
|
|
112555
|
+
| 'brivo_digital_credential'
|
|
112197
112556
|
| 'hid_credential'
|
|
112198
112557
|
| 'visionline_card'
|
|
112199
112558
|
| 'salto_ks_credential'
|