@seamapi/types 1.333.0 → 1.335.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 +149 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1293 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +73 -7
- package/lib/seam/connect/models/acs/acs-credential.js +6 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +20 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +7 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +240 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +104 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +136 -14
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +130 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +846 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +136 -0
- package/src/lib/seam/connect/route-types.ts +1212 -0
package/dist/connect.d.cts
CHANGED
|
@@ -2361,7 +2361,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2361
2361
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2362
2362
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2363
2363
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2364
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
2364
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
2365
2365
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2366
2366
|
created_at: z.ZodString;
|
|
2367
2367
|
workspace_id: z.ZodString;
|
|
@@ -2487,6 +2487,25 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2487
2487
|
card_id?: string | undefined;
|
|
2488
2488
|
credential_id?: string | undefined;
|
|
2489
2489
|
}>>;
|
|
2490
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
2491
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2492
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
2493
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
2494
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2495
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
2496
|
+
}, "strip", z.ZodTypeAny, {
|
|
2497
|
+
endpoint_id?: string | undefined;
|
|
2498
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2499
|
+
key_id?: string | undefined;
|
|
2500
|
+
key_issuing_request_id?: string | undefined;
|
|
2501
|
+
door_names?: string[] | undefined;
|
|
2502
|
+
}, {
|
|
2503
|
+
endpoint_id?: string | undefined;
|
|
2504
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2505
|
+
key_id?: string | undefined;
|
|
2506
|
+
key_issuing_request_id?: string | undefined;
|
|
2507
|
+
door_names?: string[] | undefined;
|
|
2508
|
+
}>>;
|
|
2490
2509
|
}, {
|
|
2491
2510
|
is_managed: z.ZodLiteral<true>;
|
|
2492
2511
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2539,8 +2558,15 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2539
2558
|
card_id?: string | undefined;
|
|
2540
2559
|
credential_id?: string | undefined;
|
|
2541
2560
|
} | undefined;
|
|
2561
|
+
assa_abloy_vostio_metadata?: {
|
|
2562
|
+
endpoint_id?: string | undefined;
|
|
2563
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2564
|
+
key_id?: string | undefined;
|
|
2565
|
+
key_issuing_request_id?: string | undefined;
|
|
2566
|
+
door_names?: string[] | undefined;
|
|
2567
|
+
} | undefined;
|
|
2542
2568
|
is_one_time_use?: boolean | undefined;
|
|
2543
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2569
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2544
2570
|
external_type_display_name?: string | undefined;
|
|
2545
2571
|
acs_user_id?: string | undefined;
|
|
2546
2572
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2601,8 +2627,15 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2601
2627
|
card_id?: string | undefined;
|
|
2602
2628
|
credential_id?: string | undefined;
|
|
2603
2629
|
} | undefined;
|
|
2630
|
+
assa_abloy_vostio_metadata?: {
|
|
2631
|
+
endpoint_id?: string | undefined;
|
|
2632
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2633
|
+
key_id?: string | undefined;
|
|
2634
|
+
key_issuing_request_id?: string | undefined;
|
|
2635
|
+
door_names?: string[] | undefined;
|
|
2636
|
+
} | undefined;
|
|
2604
2637
|
is_one_time_use?: boolean | undefined;
|
|
2605
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2638
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2606
2639
|
external_type_display_name?: string | undefined;
|
|
2607
2640
|
acs_user_id?: string | undefined;
|
|
2608
2641
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2627,7 +2660,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2627
2660
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2628
2661
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2629
2662
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2630
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
2663
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
2631
2664
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2632
2665
|
created_at: z.ZodString;
|
|
2633
2666
|
workspace_id: z.ZodString;
|
|
@@ -2753,6 +2786,25 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2753
2786
|
card_id?: string | undefined;
|
|
2754
2787
|
credential_id?: string | undefined;
|
|
2755
2788
|
}>>;
|
|
2789
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
2790
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2791
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
2792
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
2793
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2794
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
2795
|
+
}, "strip", z.ZodTypeAny, {
|
|
2796
|
+
endpoint_id?: string | undefined;
|
|
2797
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2798
|
+
key_id?: string | undefined;
|
|
2799
|
+
key_issuing_request_id?: string | undefined;
|
|
2800
|
+
door_names?: string[] | undefined;
|
|
2801
|
+
}, {
|
|
2802
|
+
endpoint_id?: string | undefined;
|
|
2803
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2804
|
+
key_id?: string | undefined;
|
|
2805
|
+
key_issuing_request_id?: string | undefined;
|
|
2806
|
+
door_names?: string[] | undefined;
|
|
2807
|
+
}>>;
|
|
2756
2808
|
}, {
|
|
2757
2809
|
is_managed: z.ZodLiteral<false>;
|
|
2758
2810
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2805,8 +2857,15 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2805
2857
|
card_id?: string | undefined;
|
|
2806
2858
|
credential_id?: string | undefined;
|
|
2807
2859
|
} | undefined;
|
|
2860
|
+
assa_abloy_vostio_metadata?: {
|
|
2861
|
+
endpoint_id?: string | undefined;
|
|
2862
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2863
|
+
key_id?: string | undefined;
|
|
2864
|
+
key_issuing_request_id?: string | undefined;
|
|
2865
|
+
door_names?: string[] | undefined;
|
|
2866
|
+
} | undefined;
|
|
2808
2867
|
is_one_time_use?: boolean | undefined;
|
|
2809
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2868
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2810
2869
|
external_type_display_name?: string | undefined;
|
|
2811
2870
|
acs_user_id?: string | undefined;
|
|
2812
2871
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2867,8 +2926,15 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2867
2926
|
card_id?: string | undefined;
|
|
2868
2927
|
credential_id?: string | undefined;
|
|
2869
2928
|
} | undefined;
|
|
2929
|
+
assa_abloy_vostio_metadata?: {
|
|
2930
|
+
endpoint_id?: string | undefined;
|
|
2931
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2932
|
+
key_id?: string | undefined;
|
|
2933
|
+
key_issuing_request_id?: string | undefined;
|
|
2934
|
+
door_names?: string[] | undefined;
|
|
2935
|
+
} | undefined;
|
|
2870
2936
|
is_one_time_use?: boolean | undefined;
|
|
2871
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2937
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2872
2938
|
external_type_display_name?: string | undefined;
|
|
2873
2939
|
acs_user_id?: string | undefined;
|
|
2874
2940
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4232,7 +4298,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4232
4298
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
4233
4299
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4234
4300
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4235
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
4301
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
4236
4302
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
4237
4303
|
created_at: z.ZodString;
|
|
4238
4304
|
workspace_id: z.ZodString;
|
|
@@ -4358,6 +4424,25 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4358
4424
|
card_id?: string | undefined;
|
|
4359
4425
|
credential_id?: string | undefined;
|
|
4360
4426
|
}>>;
|
|
4427
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
4428
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4429
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
4430
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
4431
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4432
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
4433
|
+
}, "strip", z.ZodTypeAny, {
|
|
4434
|
+
endpoint_id?: string | undefined;
|
|
4435
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4436
|
+
key_id?: string | undefined;
|
|
4437
|
+
key_issuing_request_id?: string | undefined;
|
|
4438
|
+
door_names?: string[] | undefined;
|
|
4439
|
+
}, {
|
|
4440
|
+
endpoint_id?: string | undefined;
|
|
4441
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4442
|
+
key_id?: string | undefined;
|
|
4443
|
+
key_issuing_request_id?: string | undefined;
|
|
4444
|
+
door_names?: string[] | undefined;
|
|
4445
|
+
}>>;
|
|
4361
4446
|
}, {
|
|
4362
4447
|
is_managed: z.ZodLiteral<true>;
|
|
4363
4448
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4410,8 +4495,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4410
4495
|
card_id?: string | undefined;
|
|
4411
4496
|
credential_id?: string | undefined;
|
|
4412
4497
|
} | undefined;
|
|
4498
|
+
assa_abloy_vostio_metadata?: {
|
|
4499
|
+
endpoint_id?: string | undefined;
|
|
4500
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4501
|
+
key_id?: string | undefined;
|
|
4502
|
+
key_issuing_request_id?: string | undefined;
|
|
4503
|
+
door_names?: string[] | undefined;
|
|
4504
|
+
} | undefined;
|
|
4413
4505
|
is_one_time_use?: boolean | undefined;
|
|
4414
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4506
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4415
4507
|
external_type_display_name?: string | undefined;
|
|
4416
4508
|
acs_user_id?: string | undefined;
|
|
4417
4509
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4472,8 +4564,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4472
4564
|
card_id?: string | undefined;
|
|
4473
4565
|
credential_id?: string | undefined;
|
|
4474
4566
|
} | undefined;
|
|
4567
|
+
assa_abloy_vostio_metadata?: {
|
|
4568
|
+
endpoint_id?: string | undefined;
|
|
4569
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4570
|
+
key_id?: string | undefined;
|
|
4571
|
+
key_issuing_request_id?: string | undefined;
|
|
4572
|
+
door_names?: string[] | undefined;
|
|
4573
|
+
} | undefined;
|
|
4475
4574
|
is_one_time_use?: boolean | undefined;
|
|
4476
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4575
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4477
4576
|
external_type_display_name?: string | undefined;
|
|
4478
4577
|
acs_user_id?: string | undefined;
|
|
4479
4578
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4497,7 +4596,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4497
4596
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
4498
4597
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4499
4598
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4500
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
4599
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
4501
4600
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
4502
4601
|
created_at: z.ZodString;
|
|
4503
4602
|
workspace_id: z.ZodString;
|
|
@@ -4623,6 +4722,25 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4623
4722
|
card_id?: string | undefined;
|
|
4624
4723
|
credential_id?: string | undefined;
|
|
4625
4724
|
}>>;
|
|
4725
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
4726
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4727
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
4728
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
4729
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4730
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
4731
|
+
}, "strip", z.ZodTypeAny, {
|
|
4732
|
+
endpoint_id?: string | undefined;
|
|
4733
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4734
|
+
key_id?: string | undefined;
|
|
4735
|
+
key_issuing_request_id?: string | undefined;
|
|
4736
|
+
door_names?: string[] | undefined;
|
|
4737
|
+
}, {
|
|
4738
|
+
endpoint_id?: string | undefined;
|
|
4739
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4740
|
+
key_id?: string | undefined;
|
|
4741
|
+
key_issuing_request_id?: string | undefined;
|
|
4742
|
+
door_names?: string[] | undefined;
|
|
4743
|
+
}>>;
|
|
4626
4744
|
}, {
|
|
4627
4745
|
is_managed: z.ZodLiteral<false>;
|
|
4628
4746
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4675,8 +4793,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4675
4793
|
card_id?: string | undefined;
|
|
4676
4794
|
credential_id?: string | undefined;
|
|
4677
4795
|
} | undefined;
|
|
4796
|
+
assa_abloy_vostio_metadata?: {
|
|
4797
|
+
endpoint_id?: string | undefined;
|
|
4798
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4799
|
+
key_id?: string | undefined;
|
|
4800
|
+
key_issuing_request_id?: string | undefined;
|
|
4801
|
+
door_names?: string[] | undefined;
|
|
4802
|
+
} | undefined;
|
|
4678
4803
|
is_one_time_use?: boolean | undefined;
|
|
4679
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4804
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4680
4805
|
external_type_display_name?: string | undefined;
|
|
4681
4806
|
acs_user_id?: string | undefined;
|
|
4682
4807
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4737,8 +4862,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4737
4862
|
card_id?: string | undefined;
|
|
4738
4863
|
credential_id?: string | undefined;
|
|
4739
4864
|
} | undefined;
|
|
4865
|
+
assa_abloy_vostio_metadata?: {
|
|
4866
|
+
endpoint_id?: string | undefined;
|
|
4867
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4868
|
+
key_id?: string | undefined;
|
|
4869
|
+
key_issuing_request_id?: string | undefined;
|
|
4870
|
+
door_names?: string[] | undefined;
|
|
4871
|
+
} | undefined;
|
|
4740
4872
|
is_one_time_use?: boolean | undefined;
|
|
4741
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4873
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4742
4874
|
external_type_display_name?: string | undefined;
|
|
4743
4875
|
acs_user_id?: string | undefined;
|
|
4744
4876
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4836,8 +4968,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4836
4968
|
card_id?: string | undefined;
|
|
4837
4969
|
credential_id?: string | undefined;
|
|
4838
4970
|
} | undefined;
|
|
4971
|
+
assa_abloy_vostio_metadata?: {
|
|
4972
|
+
endpoint_id?: string | undefined;
|
|
4973
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4974
|
+
key_id?: string | undefined;
|
|
4975
|
+
key_issuing_request_id?: string | undefined;
|
|
4976
|
+
door_names?: string[] | undefined;
|
|
4977
|
+
} | undefined;
|
|
4839
4978
|
is_one_time_use?: boolean | undefined;
|
|
4840
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
4979
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4841
4980
|
external_type_display_name?: string | undefined;
|
|
4842
4981
|
acs_user_id?: string | undefined;
|
|
4843
4982
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4898,8 +5037,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4898
5037
|
card_id?: string | undefined;
|
|
4899
5038
|
credential_id?: string | undefined;
|
|
4900
5039
|
} | undefined;
|
|
5040
|
+
assa_abloy_vostio_metadata?: {
|
|
5041
|
+
endpoint_id?: string | undefined;
|
|
5042
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5043
|
+
key_id?: string | undefined;
|
|
5044
|
+
key_issuing_request_id?: string | undefined;
|
|
5045
|
+
door_names?: string[] | undefined;
|
|
5046
|
+
} | undefined;
|
|
4901
5047
|
is_one_time_use?: boolean | undefined;
|
|
4902
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5048
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4903
5049
|
external_type_display_name?: string | undefined;
|
|
4904
5050
|
acs_user_id?: string | undefined;
|
|
4905
5051
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -4987,8 +5133,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4987
5133
|
card_id?: string | undefined;
|
|
4988
5134
|
credential_id?: string | undefined;
|
|
4989
5135
|
} | undefined;
|
|
5136
|
+
assa_abloy_vostio_metadata?: {
|
|
5137
|
+
endpoint_id?: string | undefined;
|
|
5138
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5139
|
+
key_id?: string | undefined;
|
|
5140
|
+
key_issuing_request_id?: string | undefined;
|
|
5141
|
+
door_names?: string[] | undefined;
|
|
5142
|
+
} | undefined;
|
|
4990
5143
|
is_one_time_use?: boolean | undefined;
|
|
4991
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5144
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
4992
5145
|
external_type_display_name?: string | undefined;
|
|
4993
5146
|
acs_user_id?: string | undefined;
|
|
4994
5147
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5049,8 +5202,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5049
5202
|
card_id?: string | undefined;
|
|
5050
5203
|
credential_id?: string | undefined;
|
|
5051
5204
|
} | undefined;
|
|
5205
|
+
assa_abloy_vostio_metadata?: {
|
|
5206
|
+
endpoint_id?: string | undefined;
|
|
5207
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5208
|
+
key_id?: string | undefined;
|
|
5209
|
+
key_issuing_request_id?: string | undefined;
|
|
5210
|
+
door_names?: string[] | undefined;
|
|
5211
|
+
} | undefined;
|
|
5052
5212
|
is_one_time_use?: boolean | undefined;
|
|
5053
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5213
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5054
5214
|
external_type_display_name?: string | undefined;
|
|
5055
5215
|
acs_user_id?: string | undefined;
|
|
5056
5216
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5143,8 +5303,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5143
5303
|
card_id?: string | undefined;
|
|
5144
5304
|
credential_id?: string | undefined;
|
|
5145
5305
|
} | undefined;
|
|
5306
|
+
assa_abloy_vostio_metadata?: {
|
|
5307
|
+
endpoint_id?: string | undefined;
|
|
5308
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5309
|
+
key_id?: string | undefined;
|
|
5310
|
+
key_issuing_request_id?: string | undefined;
|
|
5311
|
+
door_names?: string[] | undefined;
|
|
5312
|
+
} | undefined;
|
|
5146
5313
|
is_one_time_use?: boolean | undefined;
|
|
5147
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5314
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5148
5315
|
external_type_display_name?: string | undefined;
|
|
5149
5316
|
acs_user_id?: string | undefined;
|
|
5150
5317
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5205,8 +5372,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5205
5372
|
card_id?: string | undefined;
|
|
5206
5373
|
credential_id?: string | undefined;
|
|
5207
5374
|
} | undefined;
|
|
5375
|
+
assa_abloy_vostio_metadata?: {
|
|
5376
|
+
endpoint_id?: string | undefined;
|
|
5377
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5378
|
+
key_id?: string | undefined;
|
|
5379
|
+
key_issuing_request_id?: string | undefined;
|
|
5380
|
+
door_names?: string[] | undefined;
|
|
5381
|
+
} | undefined;
|
|
5208
5382
|
is_one_time_use?: boolean | undefined;
|
|
5209
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5383
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5210
5384
|
external_type_display_name?: string | undefined;
|
|
5211
5385
|
acs_user_id?: string | undefined;
|
|
5212
5386
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5300,8 +5474,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5300
5474
|
card_id?: string | undefined;
|
|
5301
5475
|
credential_id?: string | undefined;
|
|
5302
5476
|
} | undefined;
|
|
5477
|
+
assa_abloy_vostio_metadata?: {
|
|
5478
|
+
endpoint_id?: string | undefined;
|
|
5479
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5480
|
+
key_id?: string | undefined;
|
|
5481
|
+
key_issuing_request_id?: string | undefined;
|
|
5482
|
+
door_names?: string[] | undefined;
|
|
5483
|
+
} | undefined;
|
|
5303
5484
|
is_one_time_use?: boolean | undefined;
|
|
5304
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5485
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5305
5486
|
external_type_display_name?: string | undefined;
|
|
5306
5487
|
acs_user_id?: string | undefined;
|
|
5307
5488
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5362,8 +5543,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5362
5543
|
card_id?: string | undefined;
|
|
5363
5544
|
credential_id?: string | undefined;
|
|
5364
5545
|
} | undefined;
|
|
5546
|
+
assa_abloy_vostio_metadata?: {
|
|
5547
|
+
endpoint_id?: string | undefined;
|
|
5548
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5549
|
+
key_id?: string | undefined;
|
|
5550
|
+
key_issuing_request_id?: string | undefined;
|
|
5551
|
+
door_names?: string[] | undefined;
|
|
5552
|
+
} | undefined;
|
|
5365
5553
|
is_one_time_use?: boolean | undefined;
|
|
5366
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5554
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5367
5555
|
external_type_display_name?: string | undefined;
|
|
5368
5556
|
acs_user_id?: string | undefined;
|
|
5369
5557
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5485,7 +5673,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5485
5673
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
5486
5674
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5487
5675
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
5488
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
5676
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
5489
5677
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5490
5678
|
created_at: z.ZodString;
|
|
5491
5679
|
workspace_id: z.ZodString;
|
|
@@ -5611,6 +5799,25 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5611
5799
|
card_id?: string | undefined;
|
|
5612
5800
|
credential_id?: string | undefined;
|
|
5613
5801
|
}>>;
|
|
5802
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
5803
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5804
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
5805
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
5806
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5807
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
5808
|
+
}, "strip", z.ZodTypeAny, {
|
|
5809
|
+
endpoint_id?: string | undefined;
|
|
5810
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5811
|
+
key_id?: string | undefined;
|
|
5812
|
+
key_issuing_request_id?: string | undefined;
|
|
5813
|
+
door_names?: string[] | undefined;
|
|
5814
|
+
}, {
|
|
5815
|
+
endpoint_id?: string | undefined;
|
|
5816
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5817
|
+
key_id?: string | undefined;
|
|
5818
|
+
key_issuing_request_id?: string | undefined;
|
|
5819
|
+
door_names?: string[] | undefined;
|
|
5820
|
+
}>>;
|
|
5614
5821
|
}, {
|
|
5615
5822
|
is_managed: z.ZodLiteral<true>;
|
|
5616
5823
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5663,8 +5870,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5663
5870
|
card_id?: string | undefined;
|
|
5664
5871
|
credential_id?: string | undefined;
|
|
5665
5872
|
} | undefined;
|
|
5873
|
+
assa_abloy_vostio_metadata?: {
|
|
5874
|
+
endpoint_id?: string | undefined;
|
|
5875
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5876
|
+
key_id?: string | undefined;
|
|
5877
|
+
key_issuing_request_id?: string | undefined;
|
|
5878
|
+
door_names?: string[] | undefined;
|
|
5879
|
+
} | undefined;
|
|
5666
5880
|
is_one_time_use?: boolean | undefined;
|
|
5667
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5881
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5668
5882
|
external_type_display_name?: string | undefined;
|
|
5669
5883
|
acs_user_id?: string | undefined;
|
|
5670
5884
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5725,8 +5939,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5725
5939
|
card_id?: string | undefined;
|
|
5726
5940
|
credential_id?: string | undefined;
|
|
5727
5941
|
} | undefined;
|
|
5942
|
+
assa_abloy_vostio_metadata?: {
|
|
5943
|
+
endpoint_id?: string | undefined;
|
|
5944
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5945
|
+
key_id?: string | undefined;
|
|
5946
|
+
key_issuing_request_id?: string | undefined;
|
|
5947
|
+
door_names?: string[] | undefined;
|
|
5948
|
+
} | undefined;
|
|
5728
5949
|
is_one_time_use?: boolean | undefined;
|
|
5729
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
5950
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5730
5951
|
external_type_display_name?: string | undefined;
|
|
5731
5952
|
acs_user_id?: string | undefined;
|
|
5732
5953
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5750,7 +5971,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5750
5971
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
5751
5972
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5752
5973
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
5753
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
5974
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
5754
5975
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5755
5976
|
created_at: z.ZodString;
|
|
5756
5977
|
workspace_id: z.ZodString;
|
|
@@ -5876,6 +6097,25 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5876
6097
|
card_id?: string | undefined;
|
|
5877
6098
|
credential_id?: string | undefined;
|
|
5878
6099
|
}>>;
|
|
6100
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
6101
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6102
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
6103
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
6104
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6105
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
6106
|
+
}, "strip", z.ZodTypeAny, {
|
|
6107
|
+
endpoint_id?: string | undefined;
|
|
6108
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6109
|
+
key_id?: string | undefined;
|
|
6110
|
+
key_issuing_request_id?: string | undefined;
|
|
6111
|
+
door_names?: string[] | undefined;
|
|
6112
|
+
}, {
|
|
6113
|
+
endpoint_id?: string | undefined;
|
|
6114
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6115
|
+
key_id?: string | undefined;
|
|
6116
|
+
key_issuing_request_id?: string | undefined;
|
|
6117
|
+
door_names?: string[] | undefined;
|
|
6118
|
+
}>>;
|
|
5879
6119
|
}, {
|
|
5880
6120
|
is_managed: z.ZodLiteral<false>;
|
|
5881
6121
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5928,8 +6168,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5928
6168
|
card_id?: string | undefined;
|
|
5929
6169
|
credential_id?: string | undefined;
|
|
5930
6170
|
} | undefined;
|
|
6171
|
+
assa_abloy_vostio_metadata?: {
|
|
6172
|
+
endpoint_id?: string | undefined;
|
|
6173
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6174
|
+
key_id?: string | undefined;
|
|
6175
|
+
key_issuing_request_id?: string | undefined;
|
|
6176
|
+
door_names?: string[] | undefined;
|
|
6177
|
+
} | undefined;
|
|
5931
6178
|
is_one_time_use?: boolean | undefined;
|
|
5932
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6179
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5933
6180
|
external_type_display_name?: string | undefined;
|
|
5934
6181
|
acs_user_id?: string | undefined;
|
|
5935
6182
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -5990,8 +6237,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
5990
6237
|
card_id?: string | undefined;
|
|
5991
6238
|
credential_id?: string | undefined;
|
|
5992
6239
|
} | undefined;
|
|
6240
|
+
assa_abloy_vostio_metadata?: {
|
|
6241
|
+
endpoint_id?: string | undefined;
|
|
6242
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6243
|
+
key_id?: string | undefined;
|
|
6244
|
+
key_issuing_request_id?: string | undefined;
|
|
6245
|
+
door_names?: string[] | undefined;
|
|
6246
|
+
} | undefined;
|
|
5993
6247
|
is_one_time_use?: boolean | undefined;
|
|
5994
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6248
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
5995
6249
|
external_type_display_name?: string | undefined;
|
|
5996
6250
|
acs_user_id?: string | undefined;
|
|
5997
6251
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6057,8 +6311,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6057
6311
|
card_id?: string | undefined;
|
|
6058
6312
|
credential_id?: string | undefined;
|
|
6059
6313
|
} | undefined;
|
|
6314
|
+
assa_abloy_vostio_metadata?: {
|
|
6315
|
+
endpoint_id?: string | undefined;
|
|
6316
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6317
|
+
key_id?: string | undefined;
|
|
6318
|
+
key_issuing_request_id?: string | undefined;
|
|
6319
|
+
door_names?: string[] | undefined;
|
|
6320
|
+
} | undefined;
|
|
6060
6321
|
is_one_time_use?: boolean | undefined;
|
|
6061
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6322
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
6062
6323
|
external_type_display_name?: string | undefined;
|
|
6063
6324
|
acs_user_id?: string | undefined;
|
|
6064
6325
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6119,8 +6380,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6119
6380
|
card_id?: string | undefined;
|
|
6120
6381
|
credential_id?: string | undefined;
|
|
6121
6382
|
} | undefined;
|
|
6383
|
+
assa_abloy_vostio_metadata?: {
|
|
6384
|
+
endpoint_id?: string | undefined;
|
|
6385
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6386
|
+
key_id?: string | undefined;
|
|
6387
|
+
key_issuing_request_id?: string | undefined;
|
|
6388
|
+
door_names?: string[] | undefined;
|
|
6389
|
+
} | undefined;
|
|
6122
6390
|
is_one_time_use?: boolean | undefined;
|
|
6123
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6391
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
6124
6392
|
external_type_display_name?: string | undefined;
|
|
6125
6393
|
acs_user_id?: string | undefined;
|
|
6126
6394
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6187,8 +6455,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6187
6455
|
card_id?: string | undefined;
|
|
6188
6456
|
credential_id?: string | undefined;
|
|
6189
6457
|
} | undefined;
|
|
6458
|
+
assa_abloy_vostio_metadata?: {
|
|
6459
|
+
endpoint_id?: string | undefined;
|
|
6460
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6461
|
+
key_id?: string | undefined;
|
|
6462
|
+
key_issuing_request_id?: string | undefined;
|
|
6463
|
+
door_names?: string[] | undefined;
|
|
6464
|
+
} | undefined;
|
|
6190
6465
|
is_one_time_use?: boolean | undefined;
|
|
6191
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6466
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
6192
6467
|
external_type_display_name?: string | undefined;
|
|
6193
6468
|
acs_user_id?: string | undefined;
|
|
6194
6469
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6249,8 +6524,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6249
6524
|
card_id?: string | undefined;
|
|
6250
6525
|
credential_id?: string | undefined;
|
|
6251
6526
|
} | undefined;
|
|
6527
|
+
assa_abloy_vostio_metadata?: {
|
|
6528
|
+
endpoint_id?: string | undefined;
|
|
6529
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6530
|
+
key_id?: string | undefined;
|
|
6531
|
+
key_issuing_request_id?: string | undefined;
|
|
6532
|
+
door_names?: string[] | undefined;
|
|
6533
|
+
} | undefined;
|
|
6252
6534
|
is_one_time_use?: boolean | undefined;
|
|
6253
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
6535
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
6254
6536
|
external_type_display_name?: string | undefined;
|
|
6255
6537
|
acs_user_id?: string | undefined;
|
|
6256
6538
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16538,6 +16820,33 @@ declare const _default: {
|
|
|
16538
16820
|
format: string;
|
|
16539
16821
|
type: string;
|
|
16540
16822
|
};
|
|
16823
|
+
assa_abloy_vostio_metadata: {
|
|
16824
|
+
description: string;
|
|
16825
|
+
properties: {
|
|
16826
|
+
door_names: {
|
|
16827
|
+
items: {
|
|
16828
|
+
type: string;
|
|
16829
|
+
};
|
|
16830
|
+
type: string;
|
|
16831
|
+
};
|
|
16832
|
+
endpoint_id: {
|
|
16833
|
+
type: string;
|
|
16834
|
+
};
|
|
16835
|
+
key_id: {
|
|
16836
|
+
type: string;
|
|
16837
|
+
};
|
|
16838
|
+
key_issuing_request_id: {
|
|
16839
|
+
type: string;
|
|
16840
|
+
};
|
|
16841
|
+
override_guest_acs_entrance_ids: {
|
|
16842
|
+
items: {
|
|
16843
|
+
type: string;
|
|
16844
|
+
};
|
|
16845
|
+
type: string;
|
|
16846
|
+
};
|
|
16847
|
+
};
|
|
16848
|
+
type: string;
|
|
16849
|
+
};
|
|
16541
16850
|
card_number: {
|
|
16542
16851
|
nullable: boolean;
|
|
16543
16852
|
type: string;
|
|
@@ -17593,6 +17902,33 @@ declare const _default: {
|
|
|
17593
17902
|
format: string;
|
|
17594
17903
|
type: string;
|
|
17595
17904
|
};
|
|
17905
|
+
assa_abloy_vostio_metadata: {
|
|
17906
|
+
description: string;
|
|
17907
|
+
properties: {
|
|
17908
|
+
door_names: {
|
|
17909
|
+
items: {
|
|
17910
|
+
type: string;
|
|
17911
|
+
};
|
|
17912
|
+
type: string;
|
|
17913
|
+
};
|
|
17914
|
+
endpoint_id: {
|
|
17915
|
+
type: string;
|
|
17916
|
+
};
|
|
17917
|
+
key_id: {
|
|
17918
|
+
type: string;
|
|
17919
|
+
};
|
|
17920
|
+
key_issuing_request_id: {
|
|
17921
|
+
type: string;
|
|
17922
|
+
};
|
|
17923
|
+
override_guest_acs_entrance_ids: {
|
|
17924
|
+
items: {
|
|
17925
|
+
type: string;
|
|
17926
|
+
};
|
|
17927
|
+
type: string;
|
|
17928
|
+
};
|
|
17929
|
+
};
|
|
17930
|
+
type: string;
|
|
17931
|
+
};
|
|
17596
17932
|
card_number: {
|
|
17597
17933
|
nullable: boolean;
|
|
17598
17934
|
type: string;
|
|
@@ -17891,6 +18227,33 @@ declare const _default: {
|
|
|
17891
18227
|
format: string;
|
|
17892
18228
|
type: string;
|
|
17893
18229
|
};
|
|
18230
|
+
assa_abloy_vostio_metadata: {
|
|
18231
|
+
description: string;
|
|
18232
|
+
properties: {
|
|
18233
|
+
door_names: {
|
|
18234
|
+
items: {
|
|
18235
|
+
type: string;
|
|
18236
|
+
};
|
|
18237
|
+
type: string;
|
|
18238
|
+
};
|
|
18239
|
+
endpoint_id: {
|
|
18240
|
+
type: string;
|
|
18241
|
+
};
|
|
18242
|
+
key_id: {
|
|
18243
|
+
type: string;
|
|
18244
|
+
};
|
|
18245
|
+
key_issuing_request_id: {
|
|
18246
|
+
type: string;
|
|
18247
|
+
};
|
|
18248
|
+
override_guest_acs_entrance_ids: {
|
|
18249
|
+
items: {
|
|
18250
|
+
type: string;
|
|
18251
|
+
};
|
|
18252
|
+
type: string;
|
|
18253
|
+
};
|
|
18254
|
+
};
|
|
18255
|
+
type: string;
|
|
18256
|
+
};
|
|
17894
18257
|
card_number: {
|
|
17895
18258
|
nullable: boolean;
|
|
17896
18259
|
type: string;
|
|
@@ -27650,6 +28013,33 @@ declare const _default: {
|
|
|
27650
28013
|
format: string;
|
|
27651
28014
|
type: string;
|
|
27652
28015
|
};
|
|
28016
|
+
assa_abloy_vostio_metadata: {
|
|
28017
|
+
description: string;
|
|
28018
|
+
properties: {
|
|
28019
|
+
door_names: {
|
|
28020
|
+
items: {
|
|
28021
|
+
type: string;
|
|
28022
|
+
};
|
|
28023
|
+
type: string;
|
|
28024
|
+
};
|
|
28025
|
+
endpoint_id: {
|
|
28026
|
+
type: string;
|
|
28027
|
+
};
|
|
28028
|
+
key_id: {
|
|
28029
|
+
type: string;
|
|
28030
|
+
};
|
|
28031
|
+
key_issuing_request_id: {
|
|
28032
|
+
type: string;
|
|
28033
|
+
};
|
|
28034
|
+
override_guest_acs_entrance_ids: {
|
|
28035
|
+
items: {
|
|
28036
|
+
type: string;
|
|
28037
|
+
};
|
|
28038
|
+
type: string;
|
|
28039
|
+
};
|
|
28040
|
+
};
|
|
28041
|
+
type: string;
|
|
28042
|
+
};
|
|
27653
28043
|
card_number: {
|
|
27654
28044
|
nullable: boolean;
|
|
27655
28045
|
type: string;
|
|
@@ -27959,6 +28349,33 @@ declare const _default: {
|
|
|
27959
28349
|
format: string;
|
|
27960
28350
|
type: string;
|
|
27961
28351
|
};
|
|
28352
|
+
assa_abloy_vostio_metadata: {
|
|
28353
|
+
description: string;
|
|
28354
|
+
properties: {
|
|
28355
|
+
door_names: {
|
|
28356
|
+
items: {
|
|
28357
|
+
type: string;
|
|
28358
|
+
};
|
|
28359
|
+
type: string;
|
|
28360
|
+
};
|
|
28361
|
+
endpoint_id: {
|
|
28362
|
+
type: string;
|
|
28363
|
+
};
|
|
28364
|
+
key_id: {
|
|
28365
|
+
type: string;
|
|
28366
|
+
};
|
|
28367
|
+
key_issuing_request_id: {
|
|
28368
|
+
type: string;
|
|
28369
|
+
};
|
|
28370
|
+
override_guest_acs_entrance_ids: {
|
|
28371
|
+
items: {
|
|
28372
|
+
type: string;
|
|
28373
|
+
};
|
|
28374
|
+
type: string;
|
|
28375
|
+
};
|
|
28376
|
+
};
|
|
28377
|
+
type: string;
|
|
28378
|
+
};
|
|
27962
28379
|
card_number: {
|
|
27963
28380
|
nullable: boolean;
|
|
27964
28381
|
type: string;
|
|
@@ -40241,7 +40658,7 @@ interface Routes {
|
|
|
40241
40658
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40242
40659
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40243
40660
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40244
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
40661
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
40245
40662
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40246
40663
|
external_type_display_name?: string | undefined;
|
|
40247
40664
|
/** Date and time at which the credential was created. */
|
|
@@ -40318,6 +40735,14 @@ interface Routes {
|
|
|
40318
40735
|
card_id?: string | undefined;
|
|
40319
40736
|
credential_id?: string | undefined;
|
|
40320
40737
|
} | undefined;
|
|
40738
|
+
/** Vostio-specific metadata for the credential. */
|
|
40739
|
+
assa_abloy_vostio_metadata?: {
|
|
40740
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40741
|
+
key_id?: string | undefined;
|
|
40742
|
+
key_issuing_request_id?: string | undefined;
|
|
40743
|
+
door_names?: string[] | undefined;
|
|
40744
|
+
endpoint_id?: string | undefined;
|
|
40745
|
+
} | undefined;
|
|
40321
40746
|
is_managed: true;
|
|
40322
40747
|
} | {
|
|
40323
40748
|
/** ID of the credential. */
|
|
@@ -40341,7 +40766,7 @@ interface Routes {
|
|
|
40341
40766
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40342
40767
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40343
40768
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40344
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
40769
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
40345
40770
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40346
40771
|
external_type_display_name?: string | undefined;
|
|
40347
40772
|
/** Date and time at which the credential was created. */
|
|
@@ -40418,6 +40843,14 @@ interface Routes {
|
|
|
40418
40843
|
card_id?: string | undefined;
|
|
40419
40844
|
credential_id?: string | undefined;
|
|
40420
40845
|
} | undefined;
|
|
40846
|
+
/** Vostio-specific metadata for the credential. */
|
|
40847
|
+
assa_abloy_vostio_metadata?: {
|
|
40848
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40849
|
+
key_id?: string | undefined;
|
|
40850
|
+
key_issuing_request_id?: string | undefined;
|
|
40851
|
+
door_names?: string[] | undefined;
|
|
40852
|
+
endpoint_id?: string | undefined;
|
|
40853
|
+
} | undefined;
|
|
40421
40854
|
is_managed: false;
|
|
40422
40855
|
}) | null;
|
|
40423
40856
|
warnings: Array<{
|
|
@@ -40478,7 +40911,7 @@ interface Routes {
|
|
|
40478
40911
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40479
40912
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40480
40913
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40481
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
40914
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
40482
40915
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40483
40916
|
external_type_display_name?: string | undefined;
|
|
40484
40917
|
/** Date and time at which the credential was created. */
|
|
@@ -40555,6 +40988,14 @@ interface Routes {
|
|
|
40555
40988
|
card_id?: string | undefined;
|
|
40556
40989
|
credential_id?: string | undefined;
|
|
40557
40990
|
} | undefined;
|
|
40991
|
+
/** Vostio-specific metadata for the credential. */
|
|
40992
|
+
assa_abloy_vostio_metadata?: {
|
|
40993
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40994
|
+
key_id?: string | undefined;
|
|
40995
|
+
key_issuing_request_id?: string | undefined;
|
|
40996
|
+
door_names?: string[] | undefined;
|
|
40997
|
+
endpoint_id?: string | undefined;
|
|
40998
|
+
} | undefined;
|
|
40558
40999
|
is_managed: true;
|
|
40559
41000
|
} | {
|
|
40560
41001
|
/** ID of the credential. */
|
|
@@ -40578,7 +41019,7 @@ interface Routes {
|
|
|
40578
41019
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
40579
41020
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
40580
41021
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
40581
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
41022
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
40582
41023
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
40583
41024
|
external_type_display_name?: string | undefined;
|
|
40584
41025
|
/** Date and time at which the credential was created. */
|
|
@@ -40655,6 +41096,14 @@ interface Routes {
|
|
|
40655
41096
|
card_id?: string | undefined;
|
|
40656
41097
|
credential_id?: string | undefined;
|
|
40657
41098
|
} | undefined;
|
|
41099
|
+
/** Vostio-specific metadata for the credential. */
|
|
41100
|
+
assa_abloy_vostio_metadata?: {
|
|
41101
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41102
|
+
key_id?: string | undefined;
|
|
41103
|
+
key_issuing_request_id?: string | undefined;
|
|
41104
|
+
door_names?: string[] | undefined;
|
|
41105
|
+
endpoint_id?: string | undefined;
|
|
41106
|
+
} | undefined;
|
|
40658
41107
|
is_managed: false;
|
|
40659
41108
|
};
|
|
40660
41109
|
} | {
|
|
@@ -41616,7 +42065,7 @@ interface Routes {
|
|
|
41616
42065
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41617
42066
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41618
42067
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41619
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42068
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
41620
42069
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41621
42070
|
external_type_display_name?: string | undefined;
|
|
41622
42071
|
/** Date and time at which the credential was created. */
|
|
@@ -41693,6 +42142,14 @@ interface Routes {
|
|
|
41693
42142
|
card_id?: string | undefined;
|
|
41694
42143
|
credential_id?: string | undefined;
|
|
41695
42144
|
} | undefined;
|
|
42145
|
+
/** Vostio-specific metadata for the credential. */
|
|
42146
|
+
assa_abloy_vostio_metadata?: {
|
|
42147
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
42148
|
+
key_id?: string | undefined;
|
|
42149
|
+
key_issuing_request_id?: string | undefined;
|
|
42150
|
+
door_names?: string[] | undefined;
|
|
42151
|
+
endpoint_id?: string | undefined;
|
|
42152
|
+
} | undefined;
|
|
41696
42153
|
is_managed: true;
|
|
41697
42154
|
} | {
|
|
41698
42155
|
/** ID of the credential. */
|
|
@@ -41716,7 +42173,7 @@ interface Routes {
|
|
|
41716
42173
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41717
42174
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41718
42175
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41719
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42176
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
41720
42177
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41721
42178
|
external_type_display_name?: string | undefined;
|
|
41722
42179
|
/** Date and time at which the credential was created. */
|
|
@@ -41793,6 +42250,14 @@ interface Routes {
|
|
|
41793
42250
|
card_id?: string | undefined;
|
|
41794
42251
|
credential_id?: string | undefined;
|
|
41795
42252
|
} | undefined;
|
|
42253
|
+
/** Vostio-specific metadata for the credential. */
|
|
42254
|
+
assa_abloy_vostio_metadata?: {
|
|
42255
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
42256
|
+
key_id?: string | undefined;
|
|
42257
|
+
key_issuing_request_id?: string | undefined;
|
|
42258
|
+
door_names?: string[] | undefined;
|
|
42259
|
+
endpoint_id?: string | undefined;
|
|
42260
|
+
} | undefined;
|
|
41796
42261
|
is_managed: false;
|
|
41797
42262
|
}) | null;
|
|
41798
42263
|
warnings: Array<{
|
|
@@ -41853,7 +42318,7 @@ interface Routes {
|
|
|
41853
42318
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41854
42319
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41855
42320
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41856
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42321
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
41857
42322
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41858
42323
|
external_type_display_name?: string | undefined;
|
|
41859
42324
|
/** Date and time at which the credential was created. */
|
|
@@ -41930,6 +42395,14 @@ interface Routes {
|
|
|
41930
42395
|
card_id?: string | undefined;
|
|
41931
42396
|
credential_id?: string | undefined;
|
|
41932
42397
|
} | undefined;
|
|
42398
|
+
/** Vostio-specific metadata for the credential. */
|
|
42399
|
+
assa_abloy_vostio_metadata?: {
|
|
42400
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
42401
|
+
key_id?: string | undefined;
|
|
42402
|
+
key_issuing_request_id?: string | undefined;
|
|
42403
|
+
door_names?: string[] | undefined;
|
|
42404
|
+
endpoint_id?: string | undefined;
|
|
42405
|
+
} | undefined;
|
|
41933
42406
|
is_managed: true;
|
|
41934
42407
|
} | {
|
|
41935
42408
|
/** ID of the credential. */
|
|
@@ -41953,7 +42426,7 @@ interface Routes {
|
|
|
41953
42426
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
41954
42427
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41955
42428
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41956
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
42429
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
41957
42430
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
41958
42431
|
external_type_display_name?: string | undefined;
|
|
41959
42432
|
/** Date and time at which the credential was created. */
|
|
@@ -42030,6 +42503,14 @@ interface Routes {
|
|
|
42030
42503
|
card_id?: string | undefined;
|
|
42031
42504
|
credential_id?: string | undefined;
|
|
42032
42505
|
} | undefined;
|
|
42506
|
+
/** Vostio-specific metadata for the credential. */
|
|
42507
|
+
assa_abloy_vostio_metadata?: {
|
|
42508
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
42509
|
+
key_id?: string | undefined;
|
|
42510
|
+
key_issuing_request_id?: string | undefined;
|
|
42511
|
+
door_names?: string[] | undefined;
|
|
42512
|
+
endpoint_id?: string | undefined;
|
|
42513
|
+
} | undefined;
|
|
42033
42514
|
is_managed: false;
|
|
42034
42515
|
};
|
|
42035
42516
|
} | {
|
|
@@ -43797,7 +44278,7 @@ interface Routes {
|
|
|
43797
44278
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43798
44279
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43799
44280
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43800
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44281
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
43801
44282
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43802
44283
|
external_type_display_name?: string | undefined;
|
|
43803
44284
|
/** Date and time at which the credential was created. */
|
|
@@ -43874,6 +44355,14 @@ interface Routes {
|
|
|
43874
44355
|
card_id?: string | undefined;
|
|
43875
44356
|
credential_id?: string | undefined;
|
|
43876
44357
|
} | undefined;
|
|
44358
|
+
/** Vostio-specific metadata for the credential. */
|
|
44359
|
+
assa_abloy_vostio_metadata?: {
|
|
44360
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44361
|
+
key_id?: string | undefined;
|
|
44362
|
+
key_issuing_request_id?: string | undefined;
|
|
44363
|
+
door_names?: string[] | undefined;
|
|
44364
|
+
endpoint_id?: string | undefined;
|
|
44365
|
+
} | undefined;
|
|
43877
44366
|
is_managed: true;
|
|
43878
44367
|
} | {
|
|
43879
44368
|
/** ID of the credential. */
|
|
@@ -43897,7 +44386,7 @@ interface Routes {
|
|
|
43897
44386
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
43898
44387
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
43899
44388
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
43900
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44389
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
43901
44390
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
43902
44391
|
external_type_display_name?: string | undefined;
|
|
43903
44392
|
/** Date and time at which the credential was created. */
|
|
@@ -43974,6 +44463,14 @@ interface Routes {
|
|
|
43974
44463
|
card_id?: string | undefined;
|
|
43975
44464
|
credential_id?: string | undefined;
|
|
43976
44465
|
} | undefined;
|
|
44466
|
+
/** Vostio-specific metadata for the credential. */
|
|
44467
|
+
assa_abloy_vostio_metadata?: {
|
|
44468
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44469
|
+
key_id?: string | undefined;
|
|
44470
|
+
key_issuing_request_id?: string | undefined;
|
|
44471
|
+
door_names?: string[] | undefined;
|
|
44472
|
+
endpoint_id?: string | undefined;
|
|
44473
|
+
} | undefined;
|
|
43977
44474
|
is_managed: false;
|
|
43978
44475
|
}) | null;
|
|
43979
44476
|
warnings: Array<{
|
|
@@ -44034,7 +44531,7 @@ interface Routes {
|
|
|
44034
44531
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44035
44532
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44036
44533
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44037
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44534
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
44038
44535
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44039
44536
|
external_type_display_name?: string | undefined;
|
|
44040
44537
|
/** Date and time at which the credential was created. */
|
|
@@ -44111,6 +44608,14 @@ interface Routes {
|
|
|
44111
44608
|
card_id?: string | undefined;
|
|
44112
44609
|
credential_id?: string | undefined;
|
|
44113
44610
|
} | undefined;
|
|
44611
|
+
/** Vostio-specific metadata for the credential. */
|
|
44612
|
+
assa_abloy_vostio_metadata?: {
|
|
44613
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44614
|
+
key_id?: string | undefined;
|
|
44615
|
+
key_issuing_request_id?: string | undefined;
|
|
44616
|
+
door_names?: string[] | undefined;
|
|
44617
|
+
endpoint_id?: string | undefined;
|
|
44618
|
+
} | undefined;
|
|
44114
44619
|
is_managed: true;
|
|
44115
44620
|
} | {
|
|
44116
44621
|
/** ID of the credential. */
|
|
@@ -44134,7 +44639,7 @@ interface Routes {
|
|
|
44134
44639
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
44135
44640
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
44136
44641
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
44137
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
44642
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
44138
44643
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
44139
44644
|
external_type_display_name?: string | undefined;
|
|
44140
44645
|
/** Date and time at which the credential was created. */
|
|
@@ -44211,6 +44716,14 @@ interface Routes {
|
|
|
44211
44716
|
card_id?: string | undefined;
|
|
44212
44717
|
credential_id?: string | undefined;
|
|
44213
44718
|
} | undefined;
|
|
44719
|
+
/** Vostio-specific metadata for the credential. */
|
|
44720
|
+
assa_abloy_vostio_metadata?: {
|
|
44721
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44722
|
+
key_id?: string | undefined;
|
|
44723
|
+
key_issuing_request_id?: string | undefined;
|
|
44724
|
+
door_names?: string[] | undefined;
|
|
44725
|
+
endpoint_id?: string | undefined;
|
|
44726
|
+
} | undefined;
|
|
44214
44727
|
is_managed: false;
|
|
44215
44728
|
};
|
|
44216
44729
|
} | {
|
|
@@ -45159,7 +45672,7 @@ interface Routes {
|
|
|
45159
45672
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45160
45673
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45161
45674
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45162
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45675
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
45163
45676
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45164
45677
|
external_type_display_name?: string | undefined;
|
|
45165
45678
|
/** Date and time at which the credential was created. */
|
|
@@ -45236,6 +45749,14 @@ interface Routes {
|
|
|
45236
45749
|
card_id?: string | undefined;
|
|
45237
45750
|
credential_id?: string | undefined;
|
|
45238
45751
|
} | undefined;
|
|
45752
|
+
/** Vostio-specific metadata for the credential. */
|
|
45753
|
+
assa_abloy_vostio_metadata?: {
|
|
45754
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45755
|
+
key_id?: string | undefined;
|
|
45756
|
+
key_issuing_request_id?: string | undefined;
|
|
45757
|
+
door_names?: string[] | undefined;
|
|
45758
|
+
endpoint_id?: string | undefined;
|
|
45759
|
+
} | undefined;
|
|
45239
45760
|
is_managed: true;
|
|
45240
45761
|
} | {
|
|
45241
45762
|
/** ID of the credential. */
|
|
@@ -45259,7 +45780,7 @@ interface Routes {
|
|
|
45259
45780
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45260
45781
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45261
45782
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45262
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45783
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
45263
45784
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45264
45785
|
external_type_display_name?: string | undefined;
|
|
45265
45786
|
/** Date and time at which the credential was created. */
|
|
@@ -45336,6 +45857,14 @@ interface Routes {
|
|
|
45336
45857
|
card_id?: string | undefined;
|
|
45337
45858
|
credential_id?: string | undefined;
|
|
45338
45859
|
} | undefined;
|
|
45860
|
+
/** Vostio-specific metadata for the credential. */
|
|
45861
|
+
assa_abloy_vostio_metadata?: {
|
|
45862
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45863
|
+
key_id?: string | undefined;
|
|
45864
|
+
key_issuing_request_id?: string | undefined;
|
|
45865
|
+
door_names?: string[] | undefined;
|
|
45866
|
+
endpoint_id?: string | undefined;
|
|
45867
|
+
} | undefined;
|
|
45339
45868
|
is_managed: false;
|
|
45340
45869
|
}) | null;
|
|
45341
45870
|
warnings: Array<{
|
|
@@ -45396,7 +45925,7 @@ interface Routes {
|
|
|
45396
45925
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45397
45926
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45398
45927
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45399
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
45928
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
45400
45929
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45401
45930
|
external_type_display_name?: string | undefined;
|
|
45402
45931
|
/** Date and time at which the credential was created. */
|
|
@@ -45473,6 +46002,14 @@ interface Routes {
|
|
|
45473
46002
|
card_id?: string | undefined;
|
|
45474
46003
|
credential_id?: string | undefined;
|
|
45475
46004
|
} | undefined;
|
|
46005
|
+
/** Vostio-specific metadata for the credential. */
|
|
46006
|
+
assa_abloy_vostio_metadata?: {
|
|
46007
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
46008
|
+
key_id?: string | undefined;
|
|
46009
|
+
key_issuing_request_id?: string | undefined;
|
|
46010
|
+
door_names?: string[] | undefined;
|
|
46011
|
+
endpoint_id?: string | undefined;
|
|
46012
|
+
} | undefined;
|
|
45476
46013
|
is_managed: true;
|
|
45477
46014
|
} | {
|
|
45478
46015
|
/** ID of the credential. */
|
|
@@ -45496,7 +46033,7 @@ interface Routes {
|
|
|
45496
46033
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
45497
46034
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
45498
46035
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
45499
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
46036
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
45500
46037
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
45501
46038
|
external_type_display_name?: string | undefined;
|
|
45502
46039
|
/** Date and time at which the credential was created. */
|
|
@@ -45573,6 +46110,14 @@ interface Routes {
|
|
|
45573
46110
|
card_id?: string | undefined;
|
|
45574
46111
|
credential_id?: string | undefined;
|
|
45575
46112
|
} | undefined;
|
|
46113
|
+
/** Vostio-specific metadata for the credential. */
|
|
46114
|
+
assa_abloy_vostio_metadata?: {
|
|
46115
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
46116
|
+
key_id?: string | undefined;
|
|
46117
|
+
key_issuing_request_id?: string | undefined;
|
|
46118
|
+
door_names?: string[] | undefined;
|
|
46119
|
+
endpoint_id?: string | undefined;
|
|
46120
|
+
} | undefined;
|
|
45576
46121
|
is_managed: false;
|
|
45577
46122
|
};
|
|
45578
46123
|
} | {
|
|
@@ -46356,7 +46901,7 @@ interface Routes {
|
|
|
46356
46901
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46357
46902
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46358
46903
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46359
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
46904
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
46360
46905
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46361
46906
|
external_type_display_name?: string | undefined;
|
|
46362
46907
|
/** Date and time at which the credential was created. */
|
|
@@ -46433,6 +46978,14 @@ interface Routes {
|
|
|
46433
46978
|
card_id?: string | undefined;
|
|
46434
46979
|
credential_id?: string | undefined;
|
|
46435
46980
|
} | undefined;
|
|
46981
|
+
/** Vostio-specific metadata for the credential. */
|
|
46982
|
+
assa_abloy_vostio_metadata?: {
|
|
46983
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
46984
|
+
key_id?: string | undefined;
|
|
46985
|
+
key_issuing_request_id?: string | undefined;
|
|
46986
|
+
door_names?: string[] | undefined;
|
|
46987
|
+
endpoint_id?: string | undefined;
|
|
46988
|
+
} | undefined;
|
|
46436
46989
|
is_managed: true;
|
|
46437
46990
|
};
|
|
46438
46991
|
};
|
|
@@ -46511,7 +47064,7 @@ interface Routes {
|
|
|
46511
47064
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46512
47065
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46513
47066
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46514
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47067
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
46515
47068
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46516
47069
|
external_type_display_name?: string | undefined;
|
|
46517
47070
|
/** Date and time at which the credential was created. */
|
|
@@ -46588,6 +47141,14 @@ interface Routes {
|
|
|
46588
47141
|
card_id?: string | undefined;
|
|
46589
47142
|
credential_id?: string | undefined;
|
|
46590
47143
|
} | undefined;
|
|
47144
|
+
/** Vostio-specific metadata for the credential. */
|
|
47145
|
+
assa_abloy_vostio_metadata?: {
|
|
47146
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47147
|
+
key_id?: string | undefined;
|
|
47148
|
+
key_issuing_request_id?: string | undefined;
|
|
47149
|
+
door_names?: string[] | undefined;
|
|
47150
|
+
endpoint_id?: string | undefined;
|
|
47151
|
+
} | undefined;
|
|
46591
47152
|
is_managed: true;
|
|
46592
47153
|
};
|
|
46593
47154
|
};
|
|
@@ -46635,7 +47196,7 @@ interface Routes {
|
|
|
46635
47196
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46636
47197
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46637
47198
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46638
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47199
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
46639
47200
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46640
47201
|
external_type_display_name?: string | undefined;
|
|
46641
47202
|
/** Date and time at which the credential was created. */
|
|
@@ -46712,6 +47273,14 @@ interface Routes {
|
|
|
46712
47273
|
card_id?: string | undefined;
|
|
46713
47274
|
credential_id?: string | undefined;
|
|
46714
47275
|
} | undefined;
|
|
47276
|
+
/** Vostio-specific metadata for the credential. */
|
|
47277
|
+
assa_abloy_vostio_metadata?: {
|
|
47278
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47279
|
+
key_id?: string | undefined;
|
|
47280
|
+
key_issuing_request_id?: string | undefined;
|
|
47281
|
+
door_names?: string[] | undefined;
|
|
47282
|
+
endpoint_id?: string | undefined;
|
|
47283
|
+
} | undefined;
|
|
46715
47284
|
is_managed: true;
|
|
46716
47285
|
};
|
|
46717
47286
|
};
|
|
@@ -46763,7 +47332,7 @@ interface Routes {
|
|
|
46763
47332
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46764
47333
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46765
47334
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46766
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47335
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
46767
47336
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46768
47337
|
external_type_display_name?: string | undefined;
|
|
46769
47338
|
/** Date and time at which the credential was created. */
|
|
@@ -46840,6 +47409,14 @@ interface Routes {
|
|
|
46840
47409
|
card_id?: string | undefined;
|
|
46841
47410
|
credential_id?: string | undefined;
|
|
46842
47411
|
} | undefined;
|
|
47412
|
+
/** Vostio-specific metadata for the credential. */
|
|
47413
|
+
assa_abloy_vostio_metadata?: {
|
|
47414
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47415
|
+
key_id?: string | undefined;
|
|
47416
|
+
key_issuing_request_id?: string | undefined;
|
|
47417
|
+
door_names?: string[] | undefined;
|
|
47418
|
+
endpoint_id?: string | undefined;
|
|
47419
|
+
} | undefined;
|
|
46843
47420
|
is_managed: true;
|
|
46844
47421
|
};
|
|
46845
47422
|
};
|
|
@@ -46895,7 +47472,7 @@ interface Routes {
|
|
|
46895
47472
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
46896
47473
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
46897
47474
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
46898
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47475
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
46899
47476
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
46900
47477
|
external_type_display_name?: string | undefined;
|
|
46901
47478
|
/** Date and time at which the credential was created. */
|
|
@@ -46972,6 +47549,14 @@ interface Routes {
|
|
|
46972
47549
|
card_id?: string | undefined;
|
|
46973
47550
|
credential_id?: string | undefined;
|
|
46974
47551
|
} | undefined;
|
|
47552
|
+
/** Vostio-specific metadata for the credential. */
|
|
47553
|
+
assa_abloy_vostio_metadata?: {
|
|
47554
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47555
|
+
key_id?: string | undefined;
|
|
47556
|
+
key_issuing_request_id?: string | undefined;
|
|
47557
|
+
door_names?: string[] | undefined;
|
|
47558
|
+
endpoint_id?: string | undefined;
|
|
47559
|
+
} | undefined;
|
|
46975
47560
|
is_managed: true;
|
|
46976
47561
|
}>;
|
|
46977
47562
|
};
|
|
@@ -47079,7 +47664,7 @@ interface Routes {
|
|
|
47079
47664
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47080
47665
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47081
47666
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47082
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47667
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47083
47668
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47084
47669
|
external_type_display_name?: string | undefined;
|
|
47085
47670
|
/** Date and time at which the credential was created. */
|
|
@@ -47156,6 +47741,14 @@ interface Routes {
|
|
|
47156
47741
|
card_id?: string | undefined;
|
|
47157
47742
|
credential_id?: string | undefined;
|
|
47158
47743
|
} | undefined;
|
|
47744
|
+
/** Vostio-specific metadata for the credential. */
|
|
47745
|
+
assa_abloy_vostio_metadata?: {
|
|
47746
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47747
|
+
key_id?: string | undefined;
|
|
47748
|
+
key_issuing_request_id?: string | undefined;
|
|
47749
|
+
door_names?: string[] | undefined;
|
|
47750
|
+
endpoint_id?: string | undefined;
|
|
47751
|
+
} | undefined;
|
|
47159
47752
|
is_managed: true;
|
|
47160
47753
|
};
|
|
47161
47754
|
};
|
|
@@ -47195,7 +47788,7 @@ interface Routes {
|
|
|
47195
47788
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47196
47789
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47197
47790
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47198
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47791
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47199
47792
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47200
47793
|
external_type_display_name?: string | undefined;
|
|
47201
47794
|
/** Date and time at which the credential was created. */
|
|
@@ -47272,6 +47865,14 @@ interface Routes {
|
|
|
47272
47865
|
card_id?: string | undefined;
|
|
47273
47866
|
credential_id?: string | undefined;
|
|
47274
47867
|
} | undefined;
|
|
47868
|
+
/** Vostio-specific metadata for the credential. */
|
|
47869
|
+
assa_abloy_vostio_metadata?: {
|
|
47870
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47871
|
+
key_id?: string | undefined;
|
|
47872
|
+
key_issuing_request_id?: string | undefined;
|
|
47873
|
+
door_names?: string[] | undefined;
|
|
47874
|
+
endpoint_id?: string | undefined;
|
|
47875
|
+
} | undefined;
|
|
47275
47876
|
is_managed: false;
|
|
47276
47877
|
};
|
|
47277
47878
|
};
|
|
@@ -47320,7 +47921,7 @@ interface Routes {
|
|
|
47320
47921
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47321
47922
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47322
47923
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47323
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
47924
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47324
47925
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47325
47926
|
external_type_display_name?: string | undefined;
|
|
47326
47927
|
/** Date and time at which the credential was created. */
|
|
@@ -47397,6 +47998,14 @@ interface Routes {
|
|
|
47397
47998
|
card_id?: string | undefined;
|
|
47398
47999
|
credential_id?: string | undefined;
|
|
47399
48000
|
} | undefined;
|
|
48001
|
+
/** Vostio-specific metadata for the credential. */
|
|
48002
|
+
assa_abloy_vostio_metadata?: {
|
|
48003
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48004
|
+
key_id?: string | undefined;
|
|
48005
|
+
key_issuing_request_id?: string | undefined;
|
|
48006
|
+
door_names?: string[] | undefined;
|
|
48007
|
+
endpoint_id?: string | undefined;
|
|
48008
|
+
} | undefined;
|
|
47400
48009
|
is_managed: false;
|
|
47401
48010
|
}>;
|
|
47402
48011
|
};
|
|
@@ -47440,7 +48049,7 @@ interface Routes {
|
|
|
47440
48049
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47441
48050
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47442
48051
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47443
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48052
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47444
48053
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47445
48054
|
external_type_display_name?: string | undefined;
|
|
47446
48055
|
/** Date and time at which the credential was created. */
|
|
@@ -47517,6 +48126,14 @@ interface Routes {
|
|
|
47517
48126
|
card_id?: string | undefined;
|
|
47518
48127
|
credential_id?: string | undefined;
|
|
47519
48128
|
} | undefined;
|
|
48129
|
+
/** Vostio-specific metadata for the credential. */
|
|
48130
|
+
assa_abloy_vostio_metadata?: {
|
|
48131
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48132
|
+
key_id?: string | undefined;
|
|
48133
|
+
key_issuing_request_id?: string | undefined;
|
|
48134
|
+
door_names?: string[] | undefined;
|
|
48135
|
+
endpoint_id?: string | undefined;
|
|
48136
|
+
} | undefined;
|
|
47520
48137
|
is_managed: true;
|
|
47521
48138
|
};
|
|
47522
48139
|
};
|
|
@@ -47647,7 +48264,7 @@ interface Routes {
|
|
|
47647
48264
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47648
48265
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47649
48266
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47650
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48267
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47651
48268
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47652
48269
|
external_type_display_name?: string | undefined;
|
|
47653
48270
|
/** Date and time at which the credential was created. */
|
|
@@ -47724,6 +48341,14 @@ interface Routes {
|
|
|
47724
48341
|
card_id?: string | undefined;
|
|
47725
48342
|
credential_id?: string | undefined;
|
|
47726
48343
|
} | undefined;
|
|
48344
|
+
/** Vostio-specific metadata for the credential. */
|
|
48345
|
+
assa_abloy_vostio_metadata?: {
|
|
48346
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48347
|
+
key_id?: string | undefined;
|
|
48348
|
+
key_issuing_request_id?: string | undefined;
|
|
48349
|
+
door_names?: string[] | undefined;
|
|
48350
|
+
endpoint_id?: string | undefined;
|
|
48351
|
+
} | undefined;
|
|
47727
48352
|
is_managed: true;
|
|
47728
48353
|
} | {
|
|
47729
48354
|
/** ID of the credential. */
|
|
@@ -47747,7 +48372,7 @@ interface Routes {
|
|
|
47747
48372
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47748
48373
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47749
48374
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47750
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48375
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47751
48376
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47752
48377
|
external_type_display_name?: string | undefined;
|
|
47753
48378
|
/** Date and time at which the credential was created. */
|
|
@@ -47824,6 +48449,14 @@ interface Routes {
|
|
|
47824
48449
|
card_id?: string | undefined;
|
|
47825
48450
|
credential_id?: string | undefined;
|
|
47826
48451
|
} | undefined;
|
|
48452
|
+
/** Vostio-specific metadata for the credential. */
|
|
48453
|
+
assa_abloy_vostio_metadata?: {
|
|
48454
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48455
|
+
key_id?: string | undefined;
|
|
48456
|
+
key_issuing_request_id?: string | undefined;
|
|
48457
|
+
door_names?: string[] | undefined;
|
|
48458
|
+
endpoint_id?: string | undefined;
|
|
48459
|
+
} | undefined;
|
|
47827
48460
|
is_managed: false;
|
|
47828
48461
|
}) | null;
|
|
47829
48462
|
warnings: Array<{
|
|
@@ -47884,7 +48517,7 @@ interface Routes {
|
|
|
47884
48517
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47885
48518
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47886
48519
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47887
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48520
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47888
48521
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47889
48522
|
external_type_display_name?: string | undefined;
|
|
47890
48523
|
/** Date and time at which the credential was created. */
|
|
@@ -47961,6 +48594,14 @@ interface Routes {
|
|
|
47961
48594
|
card_id?: string | undefined;
|
|
47962
48595
|
credential_id?: string | undefined;
|
|
47963
48596
|
} | undefined;
|
|
48597
|
+
/** Vostio-specific metadata for the credential. */
|
|
48598
|
+
assa_abloy_vostio_metadata?: {
|
|
48599
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48600
|
+
key_id?: string | undefined;
|
|
48601
|
+
key_issuing_request_id?: string | undefined;
|
|
48602
|
+
door_names?: string[] | undefined;
|
|
48603
|
+
endpoint_id?: string | undefined;
|
|
48604
|
+
} | undefined;
|
|
47964
48605
|
is_managed: true;
|
|
47965
48606
|
} | {
|
|
47966
48607
|
/** ID of the credential. */
|
|
@@ -47984,7 +48625,7 @@ interface Routes {
|
|
|
47984
48625
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
47985
48626
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
47986
48627
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
47987
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
48628
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
47988
48629
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
47989
48630
|
external_type_display_name?: string | undefined;
|
|
47990
48631
|
/** Date and time at which the credential was created. */
|
|
@@ -48061,6 +48702,14 @@ interface Routes {
|
|
|
48061
48702
|
card_id?: string | undefined;
|
|
48062
48703
|
credential_id?: string | undefined;
|
|
48063
48704
|
} | undefined;
|
|
48705
|
+
/** Vostio-specific metadata for the credential. */
|
|
48706
|
+
assa_abloy_vostio_metadata?: {
|
|
48707
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48708
|
+
key_id?: string | undefined;
|
|
48709
|
+
key_issuing_request_id?: string | undefined;
|
|
48710
|
+
door_names?: string[] | undefined;
|
|
48711
|
+
endpoint_id?: string | undefined;
|
|
48712
|
+
} | undefined;
|
|
48064
48713
|
is_managed: false;
|
|
48065
48714
|
};
|
|
48066
48715
|
} | {
|
|
@@ -48527,7 +49176,7 @@ interface Routes {
|
|
|
48527
49176
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48528
49177
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48529
49178
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48530
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
49179
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
48531
49180
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48532
49181
|
external_type_display_name?: string | undefined;
|
|
48533
49182
|
/** Date and time at which the credential was created. */
|
|
@@ -48604,6 +49253,14 @@ interface Routes {
|
|
|
48604
49253
|
card_id?: string | undefined;
|
|
48605
49254
|
credential_id?: string | undefined;
|
|
48606
49255
|
} | undefined;
|
|
49256
|
+
/** Vostio-specific metadata for the credential. */
|
|
49257
|
+
assa_abloy_vostio_metadata?: {
|
|
49258
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49259
|
+
key_id?: string | undefined;
|
|
49260
|
+
key_issuing_request_id?: string | undefined;
|
|
49261
|
+
door_names?: string[] | undefined;
|
|
49262
|
+
endpoint_id?: string | undefined;
|
|
49263
|
+
} | undefined;
|
|
48607
49264
|
is_managed: true;
|
|
48608
49265
|
} | {
|
|
48609
49266
|
/** ID of the credential. */
|
|
@@ -48627,7 +49284,7 @@ interface Routes {
|
|
|
48627
49284
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48628
49285
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48629
49286
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48630
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
49287
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
48631
49288
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48632
49289
|
external_type_display_name?: string | undefined;
|
|
48633
49290
|
/** Date and time at which the credential was created. */
|
|
@@ -48704,6 +49361,14 @@ interface Routes {
|
|
|
48704
49361
|
card_id?: string | undefined;
|
|
48705
49362
|
credential_id?: string | undefined;
|
|
48706
49363
|
} | undefined;
|
|
49364
|
+
/** Vostio-specific metadata for the credential. */
|
|
49365
|
+
assa_abloy_vostio_metadata?: {
|
|
49366
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49367
|
+
key_id?: string | undefined;
|
|
49368
|
+
key_issuing_request_id?: string | undefined;
|
|
49369
|
+
door_names?: string[] | undefined;
|
|
49370
|
+
endpoint_id?: string | undefined;
|
|
49371
|
+
} | undefined;
|
|
48707
49372
|
is_managed: false;
|
|
48708
49373
|
}) | null;
|
|
48709
49374
|
warnings: Array<{
|
|
@@ -48764,7 +49429,7 @@ interface Routes {
|
|
|
48764
49429
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48765
49430
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48766
49431
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48767
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
49432
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
48768
49433
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48769
49434
|
external_type_display_name?: string | undefined;
|
|
48770
49435
|
/** Date and time at which the credential was created. */
|
|
@@ -48841,6 +49506,14 @@ interface Routes {
|
|
|
48841
49506
|
card_id?: string | undefined;
|
|
48842
49507
|
credential_id?: string | undefined;
|
|
48843
49508
|
} | undefined;
|
|
49509
|
+
/** Vostio-specific metadata for the credential. */
|
|
49510
|
+
assa_abloy_vostio_metadata?: {
|
|
49511
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49512
|
+
key_id?: string | undefined;
|
|
49513
|
+
key_issuing_request_id?: string | undefined;
|
|
49514
|
+
door_names?: string[] | undefined;
|
|
49515
|
+
endpoint_id?: string | undefined;
|
|
49516
|
+
} | undefined;
|
|
48844
49517
|
is_managed: true;
|
|
48845
49518
|
} | {
|
|
48846
49519
|
/** ID of the credential. */
|
|
@@ -48864,7 +49537,7 @@ interface Routes {
|
|
|
48864
49537
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
48865
49538
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
48866
49539
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
48867
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
49540
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
48868
49541
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
48869
49542
|
external_type_display_name?: string | undefined;
|
|
48870
49543
|
/** Date and time at which the credential was created. */
|
|
@@ -48941,6 +49614,14 @@ interface Routes {
|
|
|
48941
49614
|
card_id?: string | undefined;
|
|
48942
49615
|
credential_id?: string | undefined;
|
|
48943
49616
|
} | undefined;
|
|
49617
|
+
/** Vostio-specific metadata for the credential. */
|
|
49618
|
+
assa_abloy_vostio_metadata?: {
|
|
49619
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49620
|
+
key_id?: string | undefined;
|
|
49621
|
+
key_issuing_request_id?: string | undefined;
|
|
49622
|
+
door_names?: string[] | undefined;
|
|
49623
|
+
endpoint_id?: string | undefined;
|
|
49624
|
+
} | undefined;
|
|
48944
49625
|
is_managed: false;
|
|
48945
49626
|
};
|
|
48946
49627
|
} | {
|
|
@@ -49493,7 +50174,7 @@ interface Routes {
|
|
|
49493
50174
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
49494
50175
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
49495
50176
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
49496
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
50177
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
49497
50178
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
49498
50179
|
external_type_display_name?: string | undefined;
|
|
49499
50180
|
/** Date and time at which the credential was created. */
|
|
@@ -49570,6 +50251,14 @@ interface Routes {
|
|
|
49570
50251
|
card_id?: string | undefined;
|
|
49571
50252
|
credential_id?: string | undefined;
|
|
49572
50253
|
} | undefined;
|
|
50254
|
+
/** Vostio-specific metadata for the credential. */
|
|
50255
|
+
assa_abloy_vostio_metadata?: {
|
|
50256
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
50257
|
+
key_id?: string | undefined;
|
|
50258
|
+
key_issuing_request_id?: string | undefined;
|
|
50259
|
+
door_names?: string[] | undefined;
|
|
50260
|
+
endpoint_id?: string | undefined;
|
|
50261
|
+
} | undefined;
|
|
49573
50262
|
is_managed: true;
|
|
49574
50263
|
}>;
|
|
49575
50264
|
};
|
|
@@ -50814,7 +51503,7 @@ interface Routes {
|
|
|
50814
51503
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
50815
51504
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
50816
51505
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
50817
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
51506
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
50818
51507
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
50819
51508
|
external_type_display_name?: string | undefined;
|
|
50820
51509
|
/** Date and time at which the credential was created. */
|
|
@@ -50891,6 +51580,14 @@ interface Routes {
|
|
|
50891
51580
|
card_id?: string | undefined;
|
|
50892
51581
|
credential_id?: string | undefined;
|
|
50893
51582
|
} | undefined;
|
|
51583
|
+
/** Vostio-specific metadata for the credential. */
|
|
51584
|
+
assa_abloy_vostio_metadata?: {
|
|
51585
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
51586
|
+
key_id?: string | undefined;
|
|
51587
|
+
key_issuing_request_id?: string | undefined;
|
|
51588
|
+
door_names?: string[] | undefined;
|
|
51589
|
+
endpoint_id?: string | undefined;
|
|
51590
|
+
} | undefined;
|
|
50894
51591
|
is_managed: true;
|
|
50895
51592
|
} | {
|
|
50896
51593
|
/** ID of the credential. */
|
|
@@ -50914,7 +51611,7 @@ interface Routes {
|
|
|
50914
51611
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
50915
51612
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
50916
51613
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
50917
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
51614
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
50918
51615
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
50919
51616
|
external_type_display_name?: string | undefined;
|
|
50920
51617
|
/** Date and time at which the credential was created. */
|
|
@@ -50991,6 +51688,14 @@ interface Routes {
|
|
|
50991
51688
|
card_id?: string | undefined;
|
|
50992
51689
|
credential_id?: string | undefined;
|
|
50993
51690
|
} | undefined;
|
|
51691
|
+
/** Vostio-specific metadata for the credential. */
|
|
51692
|
+
assa_abloy_vostio_metadata?: {
|
|
51693
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
51694
|
+
key_id?: string | undefined;
|
|
51695
|
+
key_issuing_request_id?: string | undefined;
|
|
51696
|
+
door_names?: string[] | undefined;
|
|
51697
|
+
endpoint_id?: string | undefined;
|
|
51698
|
+
} | undefined;
|
|
50994
51699
|
is_managed: false;
|
|
50995
51700
|
}) | null;
|
|
50996
51701
|
warnings: Array<{
|
|
@@ -51051,7 +51756,7 @@ interface Routes {
|
|
|
51051
51756
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51052
51757
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51053
51758
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51054
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
51759
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51055
51760
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51056
51761
|
external_type_display_name?: string | undefined;
|
|
51057
51762
|
/** Date and time at which the credential was created. */
|
|
@@ -51128,6 +51833,14 @@ interface Routes {
|
|
|
51128
51833
|
card_id?: string | undefined;
|
|
51129
51834
|
credential_id?: string | undefined;
|
|
51130
51835
|
} | undefined;
|
|
51836
|
+
/** Vostio-specific metadata for the credential. */
|
|
51837
|
+
assa_abloy_vostio_metadata?: {
|
|
51838
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
51839
|
+
key_id?: string | undefined;
|
|
51840
|
+
key_issuing_request_id?: string | undefined;
|
|
51841
|
+
door_names?: string[] | undefined;
|
|
51842
|
+
endpoint_id?: string | undefined;
|
|
51843
|
+
} | undefined;
|
|
51131
51844
|
is_managed: true;
|
|
51132
51845
|
} | {
|
|
51133
51846
|
/** ID of the credential. */
|
|
@@ -51151,7 +51864,7 @@ interface Routes {
|
|
|
51151
51864
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51152
51865
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51153
51866
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51154
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
51867
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51155
51868
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51156
51869
|
external_type_display_name?: string | undefined;
|
|
51157
51870
|
/** Date and time at which the credential was created. */
|
|
@@ -51228,6 +51941,14 @@ interface Routes {
|
|
|
51228
51941
|
card_id?: string | undefined;
|
|
51229
51942
|
credential_id?: string | undefined;
|
|
51230
51943
|
} | undefined;
|
|
51944
|
+
/** Vostio-specific metadata for the credential. */
|
|
51945
|
+
assa_abloy_vostio_metadata?: {
|
|
51946
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
51947
|
+
key_id?: string | undefined;
|
|
51948
|
+
key_issuing_request_id?: string | undefined;
|
|
51949
|
+
door_names?: string[] | undefined;
|
|
51950
|
+
endpoint_id?: string | undefined;
|
|
51951
|
+
} | undefined;
|
|
51231
51952
|
is_managed: false;
|
|
51232
51953
|
};
|
|
51233
51954
|
} | {
|
|
@@ -51646,7 +52367,7 @@ interface Routes {
|
|
|
51646
52367
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51647
52368
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51648
52369
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51649
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
52370
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51650
52371
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51651
52372
|
external_type_display_name?: string | undefined;
|
|
51652
52373
|
/** Date and time at which the credential was created. */
|
|
@@ -51723,6 +52444,14 @@ interface Routes {
|
|
|
51723
52444
|
card_id?: string | undefined;
|
|
51724
52445
|
credential_id?: string | undefined;
|
|
51725
52446
|
} | undefined;
|
|
52447
|
+
/** Vostio-specific metadata for the credential. */
|
|
52448
|
+
assa_abloy_vostio_metadata?: {
|
|
52449
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
52450
|
+
key_id?: string | undefined;
|
|
52451
|
+
key_issuing_request_id?: string | undefined;
|
|
52452
|
+
door_names?: string[] | undefined;
|
|
52453
|
+
endpoint_id?: string | undefined;
|
|
52454
|
+
} | undefined;
|
|
51726
52455
|
is_managed: true;
|
|
51727
52456
|
} | {
|
|
51728
52457
|
/** ID of the credential. */
|
|
@@ -51746,7 +52475,7 @@ interface Routes {
|
|
|
51746
52475
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51747
52476
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51748
52477
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51749
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
52478
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51750
52479
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51751
52480
|
external_type_display_name?: string | undefined;
|
|
51752
52481
|
/** Date and time at which the credential was created. */
|
|
@@ -51823,6 +52552,14 @@ interface Routes {
|
|
|
51823
52552
|
card_id?: string | undefined;
|
|
51824
52553
|
credential_id?: string | undefined;
|
|
51825
52554
|
} | undefined;
|
|
52555
|
+
/** Vostio-specific metadata for the credential. */
|
|
52556
|
+
assa_abloy_vostio_metadata?: {
|
|
52557
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
52558
|
+
key_id?: string | undefined;
|
|
52559
|
+
key_issuing_request_id?: string | undefined;
|
|
52560
|
+
door_names?: string[] | undefined;
|
|
52561
|
+
endpoint_id?: string | undefined;
|
|
52562
|
+
} | undefined;
|
|
51826
52563
|
is_managed: false;
|
|
51827
52564
|
}) | null;
|
|
51828
52565
|
warnings: Array<{
|
|
@@ -51883,7 +52620,7 @@ interface Routes {
|
|
|
51883
52620
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51884
52621
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51885
52622
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51886
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
52623
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51887
52624
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51888
52625
|
external_type_display_name?: string | undefined;
|
|
51889
52626
|
/** Date and time at which the credential was created. */
|
|
@@ -51960,6 +52697,14 @@ interface Routes {
|
|
|
51960
52697
|
card_id?: string | undefined;
|
|
51961
52698
|
credential_id?: string | undefined;
|
|
51962
52699
|
} | undefined;
|
|
52700
|
+
/** Vostio-specific metadata for the credential. */
|
|
52701
|
+
assa_abloy_vostio_metadata?: {
|
|
52702
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
52703
|
+
key_id?: string | undefined;
|
|
52704
|
+
key_issuing_request_id?: string | undefined;
|
|
52705
|
+
door_names?: string[] | undefined;
|
|
52706
|
+
endpoint_id?: string | undefined;
|
|
52707
|
+
} | undefined;
|
|
51963
52708
|
is_managed: true;
|
|
51964
52709
|
} | {
|
|
51965
52710
|
/** ID of the credential. */
|
|
@@ -51983,7 +52728,7 @@ interface Routes {
|
|
|
51983
52728
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
51984
52729
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
51985
52730
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
51986
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
52731
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
51987
52732
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
51988
52733
|
external_type_display_name?: string | undefined;
|
|
51989
52734
|
/** Date and time at which the credential was created. */
|
|
@@ -52060,6 +52805,14 @@ interface Routes {
|
|
|
52060
52805
|
card_id?: string | undefined;
|
|
52061
52806
|
credential_id?: string | undefined;
|
|
52062
52807
|
} | undefined;
|
|
52808
|
+
/** Vostio-specific metadata for the credential. */
|
|
52809
|
+
assa_abloy_vostio_metadata?: {
|
|
52810
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
52811
|
+
key_id?: string | undefined;
|
|
52812
|
+
key_issuing_request_id?: string | undefined;
|
|
52813
|
+
door_names?: string[] | undefined;
|
|
52814
|
+
endpoint_id?: string | undefined;
|
|
52815
|
+
} | undefined;
|
|
52063
52816
|
is_managed: false;
|
|
52064
52817
|
};
|
|
52065
52818
|
} | {
|
|
@@ -59879,7 +60632,7 @@ interface Routes {
|
|
|
59879
60632
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59880
60633
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59881
60634
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59882
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60635
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
59883
60636
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59884
60637
|
external_type_display_name?: string | undefined;
|
|
59885
60638
|
/** Date and time at which the credential was created. */
|
|
@@ -59956,6 +60709,14 @@ interface Routes {
|
|
|
59956
60709
|
card_id?: string | undefined;
|
|
59957
60710
|
credential_id?: string | undefined;
|
|
59958
60711
|
} | undefined;
|
|
60712
|
+
/** Vostio-specific metadata for the credential. */
|
|
60713
|
+
assa_abloy_vostio_metadata?: {
|
|
60714
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
60715
|
+
key_id?: string | undefined;
|
|
60716
|
+
key_issuing_request_id?: string | undefined;
|
|
60717
|
+
door_names?: string[] | undefined;
|
|
60718
|
+
endpoint_id?: string | undefined;
|
|
60719
|
+
} | undefined;
|
|
59959
60720
|
is_managed: true;
|
|
59960
60721
|
} | {
|
|
59961
60722
|
/** ID of the credential. */
|
|
@@ -59979,7 +60740,7 @@ interface Routes {
|
|
|
59979
60740
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
59980
60741
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
59981
60742
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
59982
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60743
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
59983
60744
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
59984
60745
|
external_type_display_name?: string | undefined;
|
|
59985
60746
|
/** Date and time at which the credential was created. */
|
|
@@ -60056,6 +60817,14 @@ interface Routes {
|
|
|
60056
60817
|
card_id?: string | undefined;
|
|
60057
60818
|
credential_id?: string | undefined;
|
|
60058
60819
|
} | undefined;
|
|
60820
|
+
/** Vostio-specific metadata for the credential. */
|
|
60821
|
+
assa_abloy_vostio_metadata?: {
|
|
60822
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
60823
|
+
key_id?: string | undefined;
|
|
60824
|
+
key_issuing_request_id?: string | undefined;
|
|
60825
|
+
door_names?: string[] | undefined;
|
|
60826
|
+
endpoint_id?: string | undefined;
|
|
60827
|
+
} | undefined;
|
|
60059
60828
|
is_managed: false;
|
|
60060
60829
|
}) | null;
|
|
60061
60830
|
warnings: Array<{
|
|
@@ -60116,7 +60885,7 @@ interface Routes {
|
|
|
60116
60885
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60117
60886
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60118
60887
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60119
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60888
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
60120
60889
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60121
60890
|
external_type_display_name?: string | undefined;
|
|
60122
60891
|
/** Date and time at which the credential was created. */
|
|
@@ -60193,6 +60962,14 @@ interface Routes {
|
|
|
60193
60962
|
card_id?: string | undefined;
|
|
60194
60963
|
credential_id?: string | undefined;
|
|
60195
60964
|
} | undefined;
|
|
60965
|
+
/** Vostio-specific metadata for the credential. */
|
|
60966
|
+
assa_abloy_vostio_metadata?: {
|
|
60967
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
60968
|
+
key_id?: string | undefined;
|
|
60969
|
+
key_issuing_request_id?: string | undefined;
|
|
60970
|
+
door_names?: string[] | undefined;
|
|
60971
|
+
endpoint_id?: string | undefined;
|
|
60972
|
+
} | undefined;
|
|
60196
60973
|
is_managed: true;
|
|
60197
60974
|
} | {
|
|
60198
60975
|
/** ID of the credential. */
|
|
@@ -60216,7 +60993,7 @@ interface Routes {
|
|
|
60216
60993
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60217
60994
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60218
60995
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60219
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
60996
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
60220
60997
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60221
60998
|
external_type_display_name?: string | undefined;
|
|
60222
60999
|
/** Date and time at which the credential was created. */
|
|
@@ -60293,6 +61070,14 @@ interface Routes {
|
|
|
60293
61070
|
card_id?: string | undefined;
|
|
60294
61071
|
credential_id?: string | undefined;
|
|
60295
61072
|
} | undefined;
|
|
61073
|
+
/** Vostio-specific metadata for the credential. */
|
|
61074
|
+
assa_abloy_vostio_metadata?: {
|
|
61075
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
61076
|
+
key_id?: string | undefined;
|
|
61077
|
+
key_issuing_request_id?: string | undefined;
|
|
61078
|
+
door_names?: string[] | undefined;
|
|
61079
|
+
endpoint_id?: string | undefined;
|
|
61080
|
+
} | undefined;
|
|
60296
61081
|
is_managed: false;
|
|
60297
61082
|
};
|
|
60298
61083
|
} | {
|
|
@@ -60713,7 +61498,7 @@ interface Routes {
|
|
|
60713
61498
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60714
61499
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60715
61500
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60716
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61501
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
60717
61502
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60718
61503
|
external_type_display_name?: string | undefined;
|
|
60719
61504
|
/** Date and time at which the credential was created. */
|
|
@@ -60790,6 +61575,14 @@ interface Routes {
|
|
|
60790
61575
|
card_id?: string | undefined;
|
|
60791
61576
|
credential_id?: string | undefined;
|
|
60792
61577
|
} | undefined;
|
|
61578
|
+
/** Vostio-specific metadata for the credential. */
|
|
61579
|
+
assa_abloy_vostio_metadata?: {
|
|
61580
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
61581
|
+
key_id?: string | undefined;
|
|
61582
|
+
key_issuing_request_id?: string | undefined;
|
|
61583
|
+
door_names?: string[] | undefined;
|
|
61584
|
+
endpoint_id?: string | undefined;
|
|
61585
|
+
} | undefined;
|
|
60793
61586
|
is_managed: true;
|
|
60794
61587
|
} | {
|
|
60795
61588
|
/** ID of the credential. */
|
|
@@ -60813,7 +61606,7 @@ interface Routes {
|
|
|
60813
61606
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60814
61607
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60815
61608
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60816
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61609
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
60817
61610
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60818
61611
|
external_type_display_name?: string | undefined;
|
|
60819
61612
|
/** Date and time at which the credential was created. */
|
|
@@ -60890,6 +61683,14 @@ interface Routes {
|
|
|
60890
61683
|
card_id?: string | undefined;
|
|
60891
61684
|
credential_id?: string | undefined;
|
|
60892
61685
|
} | undefined;
|
|
61686
|
+
/** Vostio-specific metadata for the credential. */
|
|
61687
|
+
assa_abloy_vostio_metadata?: {
|
|
61688
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
61689
|
+
key_id?: string | undefined;
|
|
61690
|
+
key_issuing_request_id?: string | undefined;
|
|
61691
|
+
door_names?: string[] | undefined;
|
|
61692
|
+
endpoint_id?: string | undefined;
|
|
61693
|
+
} | undefined;
|
|
60893
61694
|
is_managed: false;
|
|
60894
61695
|
}) | null;
|
|
60895
61696
|
warnings: Array<{
|
|
@@ -60950,7 +61751,7 @@ interface Routes {
|
|
|
60950
61751
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
60951
61752
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
60952
61753
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
60953
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61754
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
60954
61755
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
60955
61756
|
external_type_display_name?: string | undefined;
|
|
60956
61757
|
/** Date and time at which the credential was created. */
|
|
@@ -61027,6 +61828,14 @@ interface Routes {
|
|
|
61027
61828
|
card_id?: string | undefined;
|
|
61028
61829
|
credential_id?: string | undefined;
|
|
61029
61830
|
} | undefined;
|
|
61831
|
+
/** Vostio-specific metadata for the credential. */
|
|
61832
|
+
assa_abloy_vostio_metadata?: {
|
|
61833
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
61834
|
+
key_id?: string | undefined;
|
|
61835
|
+
key_issuing_request_id?: string | undefined;
|
|
61836
|
+
door_names?: string[] | undefined;
|
|
61837
|
+
endpoint_id?: string | undefined;
|
|
61838
|
+
} | undefined;
|
|
61030
61839
|
is_managed: true;
|
|
61031
61840
|
} | {
|
|
61032
61841
|
/** ID of the credential. */
|
|
@@ -61050,7 +61859,7 @@ interface Routes {
|
|
|
61050
61859
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
61051
61860
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
61052
61861
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
61053
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
61862
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
61054
61863
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
61055
61864
|
external_type_display_name?: string | undefined;
|
|
61056
61865
|
/** Date and time at which the credential was created. */
|
|
@@ -61127,6 +61936,14 @@ interface Routes {
|
|
|
61127
61936
|
card_id?: string | undefined;
|
|
61128
61937
|
credential_id?: string | undefined;
|
|
61129
61938
|
} | undefined;
|
|
61939
|
+
/** Vostio-specific metadata for the credential. */
|
|
61940
|
+
assa_abloy_vostio_metadata?: {
|
|
61941
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
61942
|
+
key_id?: string | undefined;
|
|
61943
|
+
key_issuing_request_id?: string | undefined;
|
|
61944
|
+
door_names?: string[] | undefined;
|
|
61945
|
+
endpoint_id?: string | undefined;
|
|
61946
|
+
} | undefined;
|
|
61130
61947
|
is_managed: false;
|
|
61131
61948
|
};
|
|
61132
61949
|
} | {
|
|
@@ -62912,7 +63729,7 @@ interface Routes {
|
|
|
62912
63729
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
62913
63730
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
62914
63731
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
62915
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
63732
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
62916
63733
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
62917
63734
|
external_type_display_name?: string | undefined;
|
|
62918
63735
|
/** Date and time at which the credential was created. */
|
|
@@ -62989,6 +63806,14 @@ interface Routes {
|
|
|
62989
63806
|
card_id?: string | undefined;
|
|
62990
63807
|
credential_id?: string | undefined;
|
|
62991
63808
|
} | undefined;
|
|
63809
|
+
/** Vostio-specific metadata for the credential. */
|
|
63810
|
+
assa_abloy_vostio_metadata?: {
|
|
63811
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
63812
|
+
key_id?: string | undefined;
|
|
63813
|
+
key_issuing_request_id?: string | undefined;
|
|
63814
|
+
door_names?: string[] | undefined;
|
|
63815
|
+
endpoint_id?: string | undefined;
|
|
63816
|
+
} | undefined;
|
|
62992
63817
|
is_managed: true;
|
|
62993
63818
|
} | {
|
|
62994
63819
|
/** ID of the credential. */
|
|
@@ -63012,7 +63837,7 @@ interface Routes {
|
|
|
63012
63837
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63013
63838
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63014
63839
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63015
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
63840
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63016
63841
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63017
63842
|
external_type_display_name?: string | undefined;
|
|
63018
63843
|
/** Date and time at which the credential was created. */
|
|
@@ -63089,6 +63914,14 @@ interface Routes {
|
|
|
63089
63914
|
card_id?: string | undefined;
|
|
63090
63915
|
credential_id?: string | undefined;
|
|
63091
63916
|
} | undefined;
|
|
63917
|
+
/** Vostio-specific metadata for the credential. */
|
|
63918
|
+
assa_abloy_vostio_metadata?: {
|
|
63919
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
63920
|
+
key_id?: string | undefined;
|
|
63921
|
+
key_issuing_request_id?: string | undefined;
|
|
63922
|
+
door_names?: string[] | undefined;
|
|
63923
|
+
endpoint_id?: string | undefined;
|
|
63924
|
+
} | undefined;
|
|
63092
63925
|
is_managed: false;
|
|
63093
63926
|
}) | null;
|
|
63094
63927
|
warnings: Array<{
|
|
@@ -63149,7 +63982,7 @@ interface Routes {
|
|
|
63149
63982
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63150
63983
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63151
63984
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63152
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
63985
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63153
63986
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63154
63987
|
external_type_display_name?: string | undefined;
|
|
63155
63988
|
/** Date and time at which the credential was created. */
|
|
@@ -63226,6 +64059,14 @@ interface Routes {
|
|
|
63226
64059
|
card_id?: string | undefined;
|
|
63227
64060
|
credential_id?: string | undefined;
|
|
63228
64061
|
} | undefined;
|
|
64062
|
+
/** Vostio-specific metadata for the credential. */
|
|
64063
|
+
assa_abloy_vostio_metadata?: {
|
|
64064
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
64065
|
+
key_id?: string | undefined;
|
|
64066
|
+
key_issuing_request_id?: string | undefined;
|
|
64067
|
+
door_names?: string[] | undefined;
|
|
64068
|
+
endpoint_id?: string | undefined;
|
|
64069
|
+
} | undefined;
|
|
63229
64070
|
is_managed: true;
|
|
63230
64071
|
} | {
|
|
63231
64072
|
/** ID of the credential. */
|
|
@@ -63249,7 +64090,7 @@ interface Routes {
|
|
|
63249
64090
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63250
64091
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63251
64092
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63252
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64093
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63253
64094
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63254
64095
|
external_type_display_name?: string | undefined;
|
|
63255
64096
|
/** Date and time at which the credential was created. */
|
|
@@ -63326,6 +64167,14 @@ interface Routes {
|
|
|
63326
64167
|
card_id?: string | undefined;
|
|
63327
64168
|
credential_id?: string | undefined;
|
|
63328
64169
|
} | undefined;
|
|
64170
|
+
/** Vostio-specific metadata for the credential. */
|
|
64171
|
+
assa_abloy_vostio_metadata?: {
|
|
64172
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
64173
|
+
key_id?: string | undefined;
|
|
64174
|
+
key_issuing_request_id?: string | undefined;
|
|
64175
|
+
door_names?: string[] | undefined;
|
|
64176
|
+
endpoint_id?: string | undefined;
|
|
64177
|
+
} | undefined;
|
|
63329
64178
|
is_managed: false;
|
|
63330
64179
|
};
|
|
63331
64180
|
} | {
|
|
@@ -63757,7 +64606,7 @@ interface Routes {
|
|
|
63757
64606
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63758
64607
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63759
64608
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63760
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64609
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63761
64610
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63762
64611
|
external_type_display_name?: string | undefined;
|
|
63763
64612
|
/** Date and time at which the credential was created. */
|
|
@@ -63834,6 +64683,14 @@ interface Routes {
|
|
|
63834
64683
|
card_id?: string | undefined;
|
|
63835
64684
|
credential_id?: string | undefined;
|
|
63836
64685
|
} | undefined;
|
|
64686
|
+
/** Vostio-specific metadata for the credential. */
|
|
64687
|
+
assa_abloy_vostio_metadata?: {
|
|
64688
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
64689
|
+
key_id?: string | undefined;
|
|
64690
|
+
key_issuing_request_id?: string | undefined;
|
|
64691
|
+
door_names?: string[] | undefined;
|
|
64692
|
+
endpoint_id?: string | undefined;
|
|
64693
|
+
} | undefined;
|
|
63837
64694
|
is_managed: true;
|
|
63838
64695
|
} | {
|
|
63839
64696
|
/** ID of the credential. */
|
|
@@ -63857,7 +64714,7 @@ interface Routes {
|
|
|
63857
64714
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63858
64715
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63859
64716
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63860
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64717
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63861
64718
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63862
64719
|
external_type_display_name?: string | undefined;
|
|
63863
64720
|
/** Date and time at which the credential was created. */
|
|
@@ -63934,6 +64791,14 @@ interface Routes {
|
|
|
63934
64791
|
card_id?: string | undefined;
|
|
63935
64792
|
credential_id?: string | undefined;
|
|
63936
64793
|
} | undefined;
|
|
64794
|
+
/** Vostio-specific metadata for the credential. */
|
|
64795
|
+
assa_abloy_vostio_metadata?: {
|
|
64796
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
64797
|
+
key_id?: string | undefined;
|
|
64798
|
+
key_issuing_request_id?: string | undefined;
|
|
64799
|
+
door_names?: string[] | undefined;
|
|
64800
|
+
endpoint_id?: string | undefined;
|
|
64801
|
+
} | undefined;
|
|
63937
64802
|
is_managed: false;
|
|
63938
64803
|
}) | null;
|
|
63939
64804
|
warnings: Array<{
|
|
@@ -63994,7 +64859,7 @@ interface Routes {
|
|
|
63994
64859
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
63995
64860
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
63996
64861
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
63997
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64862
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
63998
64863
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
63999
64864
|
external_type_display_name?: string | undefined;
|
|
64000
64865
|
/** Date and time at which the credential was created. */
|
|
@@ -64071,6 +64936,14 @@ interface Routes {
|
|
|
64071
64936
|
card_id?: string | undefined;
|
|
64072
64937
|
credential_id?: string | undefined;
|
|
64073
64938
|
} | undefined;
|
|
64939
|
+
/** Vostio-specific metadata for the credential. */
|
|
64940
|
+
assa_abloy_vostio_metadata?: {
|
|
64941
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
64942
|
+
key_id?: string | undefined;
|
|
64943
|
+
key_issuing_request_id?: string | undefined;
|
|
64944
|
+
door_names?: string[] | undefined;
|
|
64945
|
+
endpoint_id?: string | undefined;
|
|
64946
|
+
} | undefined;
|
|
64074
64947
|
is_managed: true;
|
|
64075
64948
|
} | {
|
|
64076
64949
|
/** ID of the credential. */
|
|
@@ -64094,7 +64967,7 @@ interface Routes {
|
|
|
64094
64967
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64095
64968
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64096
64969
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64097
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
64970
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
64098
64971
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64099
64972
|
external_type_display_name?: string | undefined;
|
|
64100
64973
|
/** Date and time at which the credential was created. */
|
|
@@ -64171,6 +65044,14 @@ interface Routes {
|
|
|
64171
65044
|
card_id?: string | undefined;
|
|
64172
65045
|
credential_id?: string | undefined;
|
|
64173
65046
|
} | undefined;
|
|
65047
|
+
/** Vostio-specific metadata for the credential. */
|
|
65048
|
+
assa_abloy_vostio_metadata?: {
|
|
65049
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
65050
|
+
key_id?: string | undefined;
|
|
65051
|
+
key_issuing_request_id?: string | undefined;
|
|
65052
|
+
door_names?: string[] | undefined;
|
|
65053
|
+
endpoint_id?: string | undefined;
|
|
65054
|
+
} | undefined;
|
|
64174
65055
|
is_managed: false;
|
|
64175
65056
|
};
|
|
64176
65057
|
} | {
|
|
@@ -64641,7 +65522,7 @@ interface Routes {
|
|
|
64641
65522
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64642
65523
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64643
65524
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64644
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65525
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
64645
65526
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64646
65527
|
external_type_display_name?: string | undefined;
|
|
64647
65528
|
/** Date and time at which the credential was created. */
|
|
@@ -64718,6 +65599,14 @@ interface Routes {
|
|
|
64718
65599
|
card_id?: string | undefined;
|
|
64719
65600
|
credential_id?: string | undefined;
|
|
64720
65601
|
} | undefined;
|
|
65602
|
+
/** Vostio-specific metadata for the credential. */
|
|
65603
|
+
assa_abloy_vostio_metadata?: {
|
|
65604
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
65605
|
+
key_id?: string | undefined;
|
|
65606
|
+
key_issuing_request_id?: string | undefined;
|
|
65607
|
+
door_names?: string[] | undefined;
|
|
65608
|
+
endpoint_id?: string | undefined;
|
|
65609
|
+
} | undefined;
|
|
64721
65610
|
is_managed: true;
|
|
64722
65611
|
} | {
|
|
64723
65612
|
/** ID of the credential. */
|
|
@@ -64741,7 +65630,7 @@ interface Routes {
|
|
|
64741
65630
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64742
65631
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64743
65632
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64744
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65633
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
64745
65634
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64746
65635
|
external_type_display_name?: string | undefined;
|
|
64747
65636
|
/** Date and time at which the credential was created. */
|
|
@@ -64818,6 +65707,14 @@ interface Routes {
|
|
|
64818
65707
|
card_id?: string | undefined;
|
|
64819
65708
|
credential_id?: string | undefined;
|
|
64820
65709
|
} | undefined;
|
|
65710
|
+
/** Vostio-specific metadata for the credential. */
|
|
65711
|
+
assa_abloy_vostio_metadata?: {
|
|
65712
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
65713
|
+
key_id?: string | undefined;
|
|
65714
|
+
key_issuing_request_id?: string | undefined;
|
|
65715
|
+
door_names?: string[] | undefined;
|
|
65716
|
+
endpoint_id?: string | undefined;
|
|
65717
|
+
} | undefined;
|
|
64821
65718
|
is_managed: false;
|
|
64822
65719
|
}) | null;
|
|
64823
65720
|
warnings: Array<{
|
|
@@ -64878,7 +65775,7 @@ interface Routes {
|
|
|
64878
65775
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64879
65776
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64880
65777
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64881
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65778
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
64882
65779
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64883
65780
|
external_type_display_name?: string | undefined;
|
|
64884
65781
|
/** Date and time at which the credential was created. */
|
|
@@ -64955,6 +65852,14 @@ interface Routes {
|
|
|
64955
65852
|
card_id?: string | undefined;
|
|
64956
65853
|
credential_id?: string | undefined;
|
|
64957
65854
|
} | undefined;
|
|
65855
|
+
/** Vostio-specific metadata for the credential. */
|
|
65856
|
+
assa_abloy_vostio_metadata?: {
|
|
65857
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
65858
|
+
key_id?: string | undefined;
|
|
65859
|
+
key_issuing_request_id?: string | undefined;
|
|
65860
|
+
door_names?: string[] | undefined;
|
|
65861
|
+
endpoint_id?: string | undefined;
|
|
65862
|
+
} | undefined;
|
|
64958
65863
|
is_managed: true;
|
|
64959
65864
|
} | {
|
|
64960
65865
|
/** ID of the credential. */
|
|
@@ -64978,7 +65883,7 @@ interface Routes {
|
|
|
64978
65883
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
64979
65884
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
64980
65885
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64981
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
65886
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
64982
65887
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
64983
65888
|
external_type_display_name?: string | undefined;
|
|
64984
65889
|
/** Date and time at which the credential was created. */
|
|
@@ -65055,6 +65960,14 @@ interface Routes {
|
|
|
65055
65960
|
card_id?: string | undefined;
|
|
65056
65961
|
credential_id?: string | undefined;
|
|
65057
65962
|
} | undefined;
|
|
65963
|
+
/** Vostio-specific metadata for the credential. */
|
|
65964
|
+
assa_abloy_vostio_metadata?: {
|
|
65965
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
65966
|
+
key_id?: string | undefined;
|
|
65967
|
+
key_issuing_request_id?: string | undefined;
|
|
65968
|
+
door_names?: string[] | undefined;
|
|
65969
|
+
endpoint_id?: string | undefined;
|
|
65970
|
+
} | undefined;
|
|
65058
65971
|
is_managed: false;
|
|
65059
65972
|
};
|
|
65060
65973
|
} | {
|
|
@@ -65908,7 +66821,7 @@ interface Routes {
|
|
|
65908
66821
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
65909
66822
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
65910
66823
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
65911
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
66824
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
65912
66825
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
65913
66826
|
external_type_display_name?: string | undefined;
|
|
65914
66827
|
/** Date and time at which the credential was created. */
|
|
@@ -65985,6 +66898,14 @@ interface Routes {
|
|
|
65985
66898
|
card_id?: string | undefined;
|
|
65986
66899
|
credential_id?: string | undefined;
|
|
65987
66900
|
} | undefined;
|
|
66901
|
+
/** Vostio-specific metadata for the credential. */
|
|
66902
|
+
assa_abloy_vostio_metadata?: {
|
|
66903
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
66904
|
+
key_id?: string | undefined;
|
|
66905
|
+
key_issuing_request_id?: string | undefined;
|
|
66906
|
+
door_names?: string[] | undefined;
|
|
66907
|
+
endpoint_id?: string | undefined;
|
|
66908
|
+
} | undefined;
|
|
65988
66909
|
is_managed: true;
|
|
65989
66910
|
} | {
|
|
65990
66911
|
/** ID of the credential. */
|
|
@@ -66008,7 +66929,7 @@ interface Routes {
|
|
|
66008
66929
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66009
66930
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66010
66931
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66011
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
66932
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66012
66933
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66013
66934
|
external_type_display_name?: string | undefined;
|
|
66014
66935
|
/** Date and time at which the credential was created. */
|
|
@@ -66085,6 +67006,14 @@ interface Routes {
|
|
|
66085
67006
|
card_id?: string | undefined;
|
|
66086
67007
|
credential_id?: string | undefined;
|
|
66087
67008
|
} | undefined;
|
|
67009
|
+
/** Vostio-specific metadata for the credential. */
|
|
67010
|
+
assa_abloy_vostio_metadata?: {
|
|
67011
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
67012
|
+
key_id?: string | undefined;
|
|
67013
|
+
key_issuing_request_id?: string | undefined;
|
|
67014
|
+
door_names?: string[] | undefined;
|
|
67015
|
+
endpoint_id?: string | undefined;
|
|
67016
|
+
} | undefined;
|
|
66088
67017
|
is_managed: false;
|
|
66089
67018
|
}) | null;
|
|
66090
67019
|
warnings: Array<{
|
|
@@ -66145,7 +67074,7 @@ interface Routes {
|
|
|
66145
67074
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66146
67075
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66147
67076
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66148
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67077
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66149
67078
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66150
67079
|
external_type_display_name?: string | undefined;
|
|
66151
67080
|
/** Date and time at which the credential was created. */
|
|
@@ -66222,6 +67151,14 @@ interface Routes {
|
|
|
66222
67151
|
card_id?: string | undefined;
|
|
66223
67152
|
credential_id?: string | undefined;
|
|
66224
67153
|
} | undefined;
|
|
67154
|
+
/** Vostio-specific metadata for the credential. */
|
|
67155
|
+
assa_abloy_vostio_metadata?: {
|
|
67156
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
67157
|
+
key_id?: string | undefined;
|
|
67158
|
+
key_issuing_request_id?: string | undefined;
|
|
67159
|
+
door_names?: string[] | undefined;
|
|
67160
|
+
endpoint_id?: string | undefined;
|
|
67161
|
+
} | undefined;
|
|
66225
67162
|
is_managed: true;
|
|
66226
67163
|
} | {
|
|
66227
67164
|
/** ID of the credential. */
|
|
@@ -66245,7 +67182,7 @@ interface Routes {
|
|
|
66245
67182
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66246
67183
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66247
67184
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66248
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67185
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66249
67186
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66250
67187
|
external_type_display_name?: string | undefined;
|
|
66251
67188
|
/** Date and time at which the credential was created. */
|
|
@@ -66322,6 +67259,14 @@ interface Routes {
|
|
|
66322
67259
|
card_id?: string | undefined;
|
|
66323
67260
|
credential_id?: string | undefined;
|
|
66324
67261
|
} | undefined;
|
|
67262
|
+
/** Vostio-specific metadata for the credential. */
|
|
67263
|
+
assa_abloy_vostio_metadata?: {
|
|
67264
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
67265
|
+
key_id?: string | undefined;
|
|
67266
|
+
key_issuing_request_id?: string | undefined;
|
|
67267
|
+
door_names?: string[] | undefined;
|
|
67268
|
+
endpoint_id?: string | undefined;
|
|
67269
|
+
} | undefined;
|
|
66325
67270
|
is_managed: false;
|
|
66326
67271
|
};
|
|
66327
67272
|
} | {
|
|
@@ -66748,7 +67693,7 @@ interface Routes {
|
|
|
66748
67693
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66749
67694
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66750
67695
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66751
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67696
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66752
67697
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66753
67698
|
external_type_display_name?: string | undefined;
|
|
66754
67699
|
/** Date and time at which the credential was created. */
|
|
@@ -66825,6 +67770,14 @@ interface Routes {
|
|
|
66825
67770
|
card_id?: string | undefined;
|
|
66826
67771
|
credential_id?: string | undefined;
|
|
66827
67772
|
} | undefined;
|
|
67773
|
+
/** Vostio-specific metadata for the credential. */
|
|
67774
|
+
assa_abloy_vostio_metadata?: {
|
|
67775
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
67776
|
+
key_id?: string | undefined;
|
|
67777
|
+
key_issuing_request_id?: string | undefined;
|
|
67778
|
+
door_names?: string[] | undefined;
|
|
67779
|
+
endpoint_id?: string | undefined;
|
|
67780
|
+
} | undefined;
|
|
66828
67781
|
is_managed: true;
|
|
66829
67782
|
} | {
|
|
66830
67783
|
/** ID of the credential. */
|
|
@@ -66848,7 +67801,7 @@ interface Routes {
|
|
|
66848
67801
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66849
67802
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66850
67803
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66851
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67804
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66852
67805
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66853
67806
|
external_type_display_name?: string | undefined;
|
|
66854
67807
|
/** Date and time at which the credential was created. */
|
|
@@ -66925,6 +67878,14 @@ interface Routes {
|
|
|
66925
67878
|
card_id?: string | undefined;
|
|
66926
67879
|
credential_id?: string | undefined;
|
|
66927
67880
|
} | undefined;
|
|
67881
|
+
/** Vostio-specific metadata for the credential. */
|
|
67882
|
+
assa_abloy_vostio_metadata?: {
|
|
67883
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
67884
|
+
key_id?: string | undefined;
|
|
67885
|
+
key_issuing_request_id?: string | undefined;
|
|
67886
|
+
door_names?: string[] | undefined;
|
|
67887
|
+
endpoint_id?: string | undefined;
|
|
67888
|
+
} | undefined;
|
|
66928
67889
|
is_managed: false;
|
|
66929
67890
|
}) | null;
|
|
66930
67891
|
warnings: Array<{
|
|
@@ -66985,7 +67946,7 @@ interface Routes {
|
|
|
66985
67946
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
66986
67947
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
66987
67948
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66988
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
67949
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
66989
67950
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
66990
67951
|
external_type_display_name?: string | undefined;
|
|
66991
67952
|
/** Date and time at which the credential was created. */
|
|
@@ -67062,6 +68023,14 @@ interface Routes {
|
|
|
67062
68023
|
card_id?: string | undefined;
|
|
67063
68024
|
credential_id?: string | undefined;
|
|
67064
68025
|
} | undefined;
|
|
68026
|
+
/** Vostio-specific metadata for the credential. */
|
|
68027
|
+
assa_abloy_vostio_metadata?: {
|
|
68028
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
68029
|
+
key_id?: string | undefined;
|
|
68030
|
+
key_issuing_request_id?: string | undefined;
|
|
68031
|
+
door_names?: string[] | undefined;
|
|
68032
|
+
endpoint_id?: string | undefined;
|
|
68033
|
+
} | undefined;
|
|
67065
68034
|
is_managed: true;
|
|
67066
68035
|
} | {
|
|
67067
68036
|
/** ID of the credential. */
|
|
@@ -67085,7 +68054,7 @@ interface Routes {
|
|
|
67085
68054
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
67086
68055
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
67087
68056
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67088
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
68057
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
67089
68058
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
67090
68059
|
external_type_display_name?: string | undefined;
|
|
67091
68060
|
/** Date and time at which the credential was created. */
|
|
@@ -67162,6 +68131,14 @@ interface Routes {
|
|
|
67162
68131
|
card_id?: string | undefined;
|
|
67163
68132
|
credential_id?: string | undefined;
|
|
67164
68133
|
} | undefined;
|
|
68134
|
+
/** Vostio-specific metadata for the credential. */
|
|
68135
|
+
assa_abloy_vostio_metadata?: {
|
|
68136
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
68137
|
+
key_id?: string | undefined;
|
|
68138
|
+
key_issuing_request_id?: string | undefined;
|
|
68139
|
+
door_names?: string[] | undefined;
|
|
68140
|
+
endpoint_id?: string | undefined;
|
|
68141
|
+
} | undefined;
|
|
67165
68142
|
is_managed: false;
|
|
67166
68143
|
};
|
|
67167
68144
|
} | {
|
|
@@ -68293,7 +69270,7 @@ interface Routes {
|
|
|
68293
69270
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68294
69271
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68295
69272
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68296
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69273
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
68297
69274
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68298
69275
|
external_type_display_name?: string | undefined;
|
|
68299
69276
|
/** Date and time at which the credential was created. */
|
|
@@ -68370,6 +69347,14 @@ interface Routes {
|
|
|
68370
69347
|
card_id?: string | undefined;
|
|
68371
69348
|
credential_id?: string | undefined;
|
|
68372
69349
|
} | undefined;
|
|
69350
|
+
/** Vostio-specific metadata for the credential. */
|
|
69351
|
+
assa_abloy_vostio_metadata?: {
|
|
69352
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69353
|
+
key_id?: string | undefined;
|
|
69354
|
+
key_issuing_request_id?: string | undefined;
|
|
69355
|
+
door_names?: string[] | undefined;
|
|
69356
|
+
endpoint_id?: string | undefined;
|
|
69357
|
+
} | undefined;
|
|
68373
69358
|
is_managed: true;
|
|
68374
69359
|
} | {
|
|
68375
69360
|
/** ID of the credential. */
|
|
@@ -68393,7 +69378,7 @@ interface Routes {
|
|
|
68393
69378
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68394
69379
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68395
69380
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68396
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69381
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
68397
69382
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68398
69383
|
external_type_display_name?: string | undefined;
|
|
68399
69384
|
/** Date and time at which the credential was created. */
|
|
@@ -68470,6 +69455,14 @@ interface Routes {
|
|
|
68470
69455
|
card_id?: string | undefined;
|
|
68471
69456
|
credential_id?: string | undefined;
|
|
68472
69457
|
} | undefined;
|
|
69458
|
+
/** Vostio-specific metadata for the credential. */
|
|
69459
|
+
assa_abloy_vostio_metadata?: {
|
|
69460
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69461
|
+
key_id?: string | undefined;
|
|
69462
|
+
key_issuing_request_id?: string | undefined;
|
|
69463
|
+
door_names?: string[] | undefined;
|
|
69464
|
+
endpoint_id?: string | undefined;
|
|
69465
|
+
} | undefined;
|
|
68473
69466
|
is_managed: false;
|
|
68474
69467
|
}) | null;
|
|
68475
69468
|
warnings: Array<{
|
|
@@ -68530,7 +69523,7 @@ interface Routes {
|
|
|
68530
69523
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68531
69524
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68532
69525
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68533
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69526
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
68534
69527
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68535
69528
|
external_type_display_name?: string | undefined;
|
|
68536
69529
|
/** Date and time at which the credential was created. */
|
|
@@ -68607,6 +69600,14 @@ interface Routes {
|
|
|
68607
69600
|
card_id?: string | undefined;
|
|
68608
69601
|
credential_id?: string | undefined;
|
|
68609
69602
|
} | undefined;
|
|
69603
|
+
/** Vostio-specific metadata for the credential. */
|
|
69604
|
+
assa_abloy_vostio_metadata?: {
|
|
69605
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69606
|
+
key_id?: string | undefined;
|
|
69607
|
+
key_issuing_request_id?: string | undefined;
|
|
69608
|
+
door_names?: string[] | undefined;
|
|
69609
|
+
endpoint_id?: string | undefined;
|
|
69610
|
+
} | undefined;
|
|
68610
69611
|
is_managed: true;
|
|
68611
69612
|
} | {
|
|
68612
69613
|
/** ID of the credential. */
|
|
@@ -68630,7 +69631,7 @@ interface Routes {
|
|
|
68630
69631
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
68631
69632
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
68632
69633
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
68633
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
69634
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
68634
69635
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
68635
69636
|
external_type_display_name?: string | undefined;
|
|
68636
69637
|
/** Date and time at which the credential was created. */
|
|
@@ -68707,6 +69708,14 @@ interface Routes {
|
|
|
68707
69708
|
card_id?: string | undefined;
|
|
68708
69709
|
credential_id?: string | undefined;
|
|
68709
69710
|
} | undefined;
|
|
69711
|
+
/** Vostio-specific metadata for the credential. */
|
|
69712
|
+
assa_abloy_vostio_metadata?: {
|
|
69713
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69714
|
+
key_id?: string | undefined;
|
|
69715
|
+
key_issuing_request_id?: string | undefined;
|
|
69716
|
+
door_names?: string[] | undefined;
|
|
69717
|
+
endpoint_id?: string | undefined;
|
|
69718
|
+
} | undefined;
|
|
68710
69719
|
is_managed: false;
|
|
68711
69720
|
};
|
|
68712
69721
|
} | {
|
|
@@ -69137,7 +70146,7 @@ interface Routes {
|
|
|
69137
70146
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69138
70147
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69139
70148
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69140
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
70149
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
69141
70150
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69142
70151
|
external_type_display_name?: string | undefined;
|
|
69143
70152
|
/** Date and time at which the credential was created. */
|
|
@@ -69214,6 +70223,14 @@ interface Routes {
|
|
|
69214
70223
|
card_id?: string | undefined;
|
|
69215
70224
|
credential_id?: string | undefined;
|
|
69216
70225
|
} | undefined;
|
|
70226
|
+
/** Vostio-specific metadata for the credential. */
|
|
70227
|
+
assa_abloy_vostio_metadata?: {
|
|
70228
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
70229
|
+
key_id?: string | undefined;
|
|
70230
|
+
key_issuing_request_id?: string | undefined;
|
|
70231
|
+
door_names?: string[] | undefined;
|
|
70232
|
+
endpoint_id?: string | undefined;
|
|
70233
|
+
} | undefined;
|
|
69217
70234
|
is_managed: true;
|
|
69218
70235
|
} | {
|
|
69219
70236
|
/** ID of the credential. */
|
|
@@ -69237,7 +70254,7 @@ interface Routes {
|
|
|
69237
70254
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69238
70255
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69239
70256
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69240
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
70257
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
69241
70258
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69242
70259
|
external_type_display_name?: string | undefined;
|
|
69243
70260
|
/** Date and time at which the credential was created. */
|
|
@@ -69314,6 +70331,14 @@ interface Routes {
|
|
|
69314
70331
|
card_id?: string | undefined;
|
|
69315
70332
|
credential_id?: string | undefined;
|
|
69316
70333
|
} | undefined;
|
|
70334
|
+
/** Vostio-specific metadata for the credential. */
|
|
70335
|
+
assa_abloy_vostio_metadata?: {
|
|
70336
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
70337
|
+
key_id?: string | undefined;
|
|
70338
|
+
key_issuing_request_id?: string | undefined;
|
|
70339
|
+
door_names?: string[] | undefined;
|
|
70340
|
+
endpoint_id?: string | undefined;
|
|
70341
|
+
} | undefined;
|
|
69317
70342
|
is_managed: false;
|
|
69318
70343
|
}) | null;
|
|
69319
70344
|
warnings: Array<{
|
|
@@ -69374,7 +70399,7 @@ interface Routes {
|
|
|
69374
70399
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69375
70400
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69376
70401
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69377
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
70402
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
69378
70403
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69379
70404
|
external_type_display_name?: string | undefined;
|
|
69380
70405
|
/** Date and time at which the credential was created. */
|
|
@@ -69451,6 +70476,14 @@ interface Routes {
|
|
|
69451
70476
|
card_id?: string | undefined;
|
|
69452
70477
|
credential_id?: string | undefined;
|
|
69453
70478
|
} | undefined;
|
|
70479
|
+
/** Vostio-specific metadata for the credential. */
|
|
70480
|
+
assa_abloy_vostio_metadata?: {
|
|
70481
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
70482
|
+
key_id?: string | undefined;
|
|
70483
|
+
key_issuing_request_id?: string | undefined;
|
|
70484
|
+
door_names?: string[] | undefined;
|
|
70485
|
+
endpoint_id?: string | undefined;
|
|
70486
|
+
} | undefined;
|
|
69454
70487
|
is_managed: true;
|
|
69455
70488
|
} | {
|
|
69456
70489
|
/** ID of the credential. */
|
|
@@ -69474,7 +70507,7 @@ interface Routes {
|
|
|
69474
70507
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
69475
70508
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
69476
70509
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
69477
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
70510
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
69478
70511
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
69479
70512
|
external_type_display_name?: string | undefined;
|
|
69480
70513
|
/** Date and time at which the credential was created. */
|
|
@@ -69551,6 +70584,14 @@ interface Routes {
|
|
|
69551
70584
|
card_id?: string | undefined;
|
|
69552
70585
|
credential_id?: string | undefined;
|
|
69553
70586
|
} | undefined;
|
|
70587
|
+
/** Vostio-specific metadata for the credential. */
|
|
70588
|
+
assa_abloy_vostio_metadata?: {
|
|
70589
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
70590
|
+
key_id?: string | undefined;
|
|
70591
|
+
key_issuing_request_id?: string | undefined;
|
|
70592
|
+
door_names?: string[] | undefined;
|
|
70593
|
+
endpoint_id?: string | undefined;
|
|
70594
|
+
} | undefined;
|
|
69554
70595
|
is_managed: false;
|
|
69555
70596
|
};
|
|
69556
70597
|
} | {
|
|
@@ -71298,7 +72339,7 @@ interface Routes {
|
|
|
71298
72339
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71299
72340
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71300
72341
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71301
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
72342
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
71302
72343
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71303
72344
|
external_type_display_name?: string | undefined;
|
|
71304
72345
|
/** Date and time at which the credential was created. */
|
|
@@ -71375,6 +72416,14 @@ interface Routes {
|
|
|
71375
72416
|
card_id?: string | undefined;
|
|
71376
72417
|
credential_id?: string | undefined;
|
|
71377
72418
|
} | undefined;
|
|
72419
|
+
/** Vostio-specific metadata for the credential. */
|
|
72420
|
+
assa_abloy_vostio_metadata?: {
|
|
72421
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
72422
|
+
key_id?: string | undefined;
|
|
72423
|
+
key_issuing_request_id?: string | undefined;
|
|
72424
|
+
door_names?: string[] | undefined;
|
|
72425
|
+
endpoint_id?: string | undefined;
|
|
72426
|
+
} | undefined;
|
|
71378
72427
|
is_managed: true;
|
|
71379
72428
|
} | {
|
|
71380
72429
|
/** ID of the credential. */
|
|
@@ -71398,7 +72447,7 @@ interface Routes {
|
|
|
71398
72447
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71399
72448
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71400
72449
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71401
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
72450
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
71402
72451
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71403
72452
|
external_type_display_name?: string | undefined;
|
|
71404
72453
|
/** Date and time at which the credential was created. */
|
|
@@ -71475,6 +72524,14 @@ interface Routes {
|
|
|
71475
72524
|
card_id?: string | undefined;
|
|
71476
72525
|
credential_id?: string | undefined;
|
|
71477
72526
|
} | undefined;
|
|
72527
|
+
/** Vostio-specific metadata for the credential. */
|
|
72528
|
+
assa_abloy_vostio_metadata?: {
|
|
72529
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
72530
|
+
key_id?: string | undefined;
|
|
72531
|
+
key_issuing_request_id?: string | undefined;
|
|
72532
|
+
door_names?: string[] | undefined;
|
|
72533
|
+
endpoint_id?: string | undefined;
|
|
72534
|
+
} | undefined;
|
|
71478
72535
|
is_managed: false;
|
|
71479
72536
|
}) | null;
|
|
71480
72537
|
warnings: Array<{
|
|
@@ -71535,7 +72592,7 @@ interface Routes {
|
|
|
71535
72592
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71536
72593
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71537
72594
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71538
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
72595
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
71539
72596
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71540
72597
|
external_type_display_name?: string | undefined;
|
|
71541
72598
|
/** Date and time at which the credential was created. */
|
|
@@ -71612,6 +72669,14 @@ interface Routes {
|
|
|
71612
72669
|
card_id?: string | undefined;
|
|
71613
72670
|
credential_id?: string | undefined;
|
|
71614
72671
|
} | undefined;
|
|
72672
|
+
/** Vostio-specific metadata for the credential. */
|
|
72673
|
+
assa_abloy_vostio_metadata?: {
|
|
72674
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
72675
|
+
key_id?: string | undefined;
|
|
72676
|
+
key_issuing_request_id?: string | undefined;
|
|
72677
|
+
door_names?: string[] | undefined;
|
|
72678
|
+
endpoint_id?: string | undefined;
|
|
72679
|
+
} | undefined;
|
|
71615
72680
|
is_managed: true;
|
|
71616
72681
|
} | {
|
|
71617
72682
|
/** ID of the credential. */
|
|
@@ -71635,7 +72700,7 @@ interface Routes {
|
|
|
71635
72700
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
71636
72701
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
71637
72702
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71638
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
72703
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
71639
72704
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
71640
72705
|
external_type_display_name?: string | undefined;
|
|
71641
72706
|
/** Date and time at which the credential was created. */
|
|
@@ -71712,6 +72777,14 @@ interface Routes {
|
|
|
71712
72777
|
card_id?: string | undefined;
|
|
71713
72778
|
credential_id?: string | undefined;
|
|
71714
72779
|
} | undefined;
|
|
72780
|
+
/** Vostio-specific metadata for the credential. */
|
|
72781
|
+
assa_abloy_vostio_metadata?: {
|
|
72782
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
72783
|
+
key_id?: string | undefined;
|
|
72784
|
+
key_issuing_request_id?: string | undefined;
|
|
72785
|
+
door_names?: string[] | undefined;
|
|
72786
|
+
endpoint_id?: string | undefined;
|
|
72787
|
+
} | undefined;
|
|
71715
72788
|
is_managed: false;
|
|
71716
72789
|
};
|
|
71717
72790
|
} | {
|
|
@@ -72318,7 +73391,7 @@ interface Routes {
|
|
|
72318
73391
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
72319
73392
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
72320
73393
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
72321
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
73394
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
72322
73395
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
72323
73396
|
external_type_display_name?: string | undefined;
|
|
72324
73397
|
/** Date and time at which the credential was created. */
|
|
@@ -72395,6 +73468,14 @@ interface Routes {
|
|
|
72395
73468
|
card_id?: string | undefined;
|
|
72396
73469
|
credential_id?: string | undefined;
|
|
72397
73470
|
} | undefined;
|
|
73471
|
+
/** Vostio-specific metadata for the credential. */
|
|
73472
|
+
assa_abloy_vostio_metadata?: {
|
|
73473
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73474
|
+
key_id?: string | undefined;
|
|
73475
|
+
key_issuing_request_id?: string | undefined;
|
|
73476
|
+
door_names?: string[] | undefined;
|
|
73477
|
+
endpoint_id?: string | undefined;
|
|
73478
|
+
} | undefined;
|
|
72398
73479
|
is_managed: true;
|
|
72399
73480
|
} | {
|
|
72400
73481
|
/** ID of the credential. */
|
|
@@ -72418,7 +73499,7 @@ interface Routes {
|
|
|
72418
73499
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
72419
73500
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
72420
73501
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
72421
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
73502
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
72422
73503
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
72423
73504
|
external_type_display_name?: string | undefined;
|
|
72424
73505
|
/** Date and time at which the credential was created. */
|
|
@@ -72495,6 +73576,14 @@ interface Routes {
|
|
|
72495
73576
|
card_id?: string | undefined;
|
|
72496
73577
|
credential_id?: string | undefined;
|
|
72497
73578
|
} | undefined;
|
|
73579
|
+
/** Vostio-specific metadata for the credential. */
|
|
73580
|
+
assa_abloy_vostio_metadata?: {
|
|
73581
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73582
|
+
key_id?: string | undefined;
|
|
73583
|
+
key_issuing_request_id?: string | undefined;
|
|
73584
|
+
door_names?: string[] | undefined;
|
|
73585
|
+
endpoint_id?: string | undefined;
|
|
73586
|
+
} | undefined;
|
|
72498
73587
|
is_managed: false;
|
|
72499
73588
|
}) | null;
|
|
72500
73589
|
warnings: Array<{
|
|
@@ -72555,7 +73644,7 @@ interface Routes {
|
|
|
72555
73644
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
72556
73645
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
72557
73646
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
72558
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
73647
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
72559
73648
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
72560
73649
|
external_type_display_name?: string | undefined;
|
|
72561
73650
|
/** Date and time at which the credential was created. */
|
|
@@ -72632,6 +73721,14 @@ interface Routes {
|
|
|
72632
73721
|
card_id?: string | undefined;
|
|
72633
73722
|
credential_id?: string | undefined;
|
|
72634
73723
|
} | undefined;
|
|
73724
|
+
/** Vostio-specific metadata for the credential. */
|
|
73725
|
+
assa_abloy_vostio_metadata?: {
|
|
73726
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73727
|
+
key_id?: string | undefined;
|
|
73728
|
+
key_issuing_request_id?: string | undefined;
|
|
73729
|
+
door_names?: string[] | undefined;
|
|
73730
|
+
endpoint_id?: string | undefined;
|
|
73731
|
+
} | undefined;
|
|
72635
73732
|
is_managed: true;
|
|
72636
73733
|
} | {
|
|
72637
73734
|
/** ID of the credential. */
|
|
@@ -72655,7 +73752,7 @@ interface Routes {
|
|
|
72655
73752
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
72656
73753
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
72657
73754
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
72658
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
73755
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
72659
73756
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
72660
73757
|
external_type_display_name?: string | undefined;
|
|
72661
73758
|
/** Date and time at which the credential was created. */
|
|
@@ -72732,6 +73829,14 @@ interface Routes {
|
|
|
72732
73829
|
card_id?: string | undefined;
|
|
72733
73830
|
credential_id?: string | undefined;
|
|
72734
73831
|
} | undefined;
|
|
73832
|
+
/** Vostio-specific metadata for the credential. */
|
|
73833
|
+
assa_abloy_vostio_metadata?: {
|
|
73834
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73835
|
+
key_id?: string | undefined;
|
|
73836
|
+
key_issuing_request_id?: string | undefined;
|
|
73837
|
+
door_names?: string[] | undefined;
|
|
73838
|
+
endpoint_id?: string | undefined;
|
|
73839
|
+
} | undefined;
|
|
72735
73840
|
is_managed: false;
|
|
72736
73841
|
};
|
|
72737
73842
|
} | {
|
|
@@ -73181,7 +74286,7 @@ interface Routes {
|
|
|
73181
74286
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
73182
74287
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
73183
74288
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73184
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
74289
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
73185
74290
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
73186
74291
|
external_type_display_name?: string | undefined;
|
|
73187
74292
|
/** Date and time at which the credential was created. */
|
|
@@ -73258,6 +74363,14 @@ interface Routes {
|
|
|
73258
74363
|
card_id?: string | undefined;
|
|
73259
74364
|
credential_id?: string | undefined;
|
|
73260
74365
|
} | undefined;
|
|
74366
|
+
/** Vostio-specific metadata for the credential. */
|
|
74367
|
+
assa_abloy_vostio_metadata?: {
|
|
74368
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
74369
|
+
key_id?: string | undefined;
|
|
74370
|
+
key_issuing_request_id?: string | undefined;
|
|
74371
|
+
door_names?: string[] | undefined;
|
|
74372
|
+
endpoint_id?: string | undefined;
|
|
74373
|
+
} | undefined;
|
|
73261
74374
|
is_managed: true;
|
|
73262
74375
|
} | {
|
|
73263
74376
|
/** ID of the credential. */
|
|
@@ -73281,7 +74394,7 @@ interface Routes {
|
|
|
73281
74394
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
73282
74395
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
73283
74396
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73284
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
74397
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
73285
74398
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
73286
74399
|
external_type_display_name?: string | undefined;
|
|
73287
74400
|
/** Date and time at which the credential was created. */
|
|
@@ -73358,6 +74471,14 @@ interface Routes {
|
|
|
73358
74471
|
card_id?: string | undefined;
|
|
73359
74472
|
credential_id?: string | undefined;
|
|
73360
74473
|
} | undefined;
|
|
74474
|
+
/** Vostio-specific metadata for the credential. */
|
|
74475
|
+
assa_abloy_vostio_metadata?: {
|
|
74476
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
74477
|
+
key_id?: string | undefined;
|
|
74478
|
+
key_issuing_request_id?: string | undefined;
|
|
74479
|
+
door_names?: string[] | undefined;
|
|
74480
|
+
endpoint_id?: string | undefined;
|
|
74481
|
+
} | undefined;
|
|
73361
74482
|
is_managed: false;
|
|
73362
74483
|
}) | null;
|
|
73363
74484
|
warnings: Array<{
|
|
@@ -73418,7 +74539,7 @@ interface Routes {
|
|
|
73418
74539
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
73419
74540
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
73420
74541
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73421
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
74542
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
73422
74543
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
73423
74544
|
external_type_display_name?: string | undefined;
|
|
73424
74545
|
/** Date and time at which the credential was created. */
|
|
@@ -73495,6 +74616,14 @@ interface Routes {
|
|
|
73495
74616
|
card_id?: string | undefined;
|
|
73496
74617
|
credential_id?: string | undefined;
|
|
73497
74618
|
} | undefined;
|
|
74619
|
+
/** Vostio-specific metadata for the credential. */
|
|
74620
|
+
assa_abloy_vostio_metadata?: {
|
|
74621
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
74622
|
+
key_id?: string | undefined;
|
|
74623
|
+
key_issuing_request_id?: string | undefined;
|
|
74624
|
+
door_names?: string[] | undefined;
|
|
74625
|
+
endpoint_id?: string | undefined;
|
|
74626
|
+
} | undefined;
|
|
73498
74627
|
is_managed: true;
|
|
73499
74628
|
} | {
|
|
73500
74629
|
/** ID of the credential. */
|
|
@@ -73518,7 +74647,7 @@ interface Routes {
|
|
|
73518
74647
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
73519
74648
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
73520
74649
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73521
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
74650
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
73522
74651
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
73523
74652
|
external_type_display_name?: string | undefined;
|
|
73524
74653
|
/** Date and time at which the credential was created. */
|
|
@@ -73595,6 +74724,14 @@ interface Routes {
|
|
|
73595
74724
|
card_id?: string | undefined;
|
|
73596
74725
|
credential_id?: string | undefined;
|
|
73597
74726
|
} | undefined;
|
|
74727
|
+
/** Vostio-specific metadata for the credential. */
|
|
74728
|
+
assa_abloy_vostio_metadata?: {
|
|
74729
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
74730
|
+
key_id?: string | undefined;
|
|
74731
|
+
key_issuing_request_id?: string | undefined;
|
|
74732
|
+
door_names?: string[] | undefined;
|
|
74733
|
+
endpoint_id?: string | undefined;
|
|
74734
|
+
} | undefined;
|
|
73598
74735
|
is_managed: false;
|
|
73599
74736
|
};
|
|
73600
74737
|
} | {
|
|
@@ -76022,7 +77159,7 @@ interface Routes {
|
|
|
76022
77159
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
76023
77160
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
76024
77161
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
76025
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
77162
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
76026
77163
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
76027
77164
|
external_type_display_name?: string | undefined;
|
|
76028
77165
|
/** Date and time at which the credential was created. */
|
|
@@ -76099,6 +77236,14 @@ interface Routes {
|
|
|
76099
77236
|
card_id?: string | undefined;
|
|
76100
77237
|
credential_id?: string | undefined;
|
|
76101
77238
|
} | undefined;
|
|
77239
|
+
/** Vostio-specific metadata for the credential. */
|
|
77240
|
+
assa_abloy_vostio_metadata?: {
|
|
77241
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
77242
|
+
key_id?: string | undefined;
|
|
77243
|
+
key_issuing_request_id?: string | undefined;
|
|
77244
|
+
door_names?: string[] | undefined;
|
|
77245
|
+
endpoint_id?: string | undefined;
|
|
77246
|
+
} | undefined;
|
|
76102
77247
|
is_managed: true;
|
|
76103
77248
|
} | {
|
|
76104
77249
|
/** ID of the credential. */
|
|
@@ -76122,7 +77267,7 @@ interface Routes {
|
|
|
76122
77267
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
76123
77268
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
76124
77269
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
76125
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
77270
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
76126
77271
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
76127
77272
|
external_type_display_name?: string | undefined;
|
|
76128
77273
|
/** Date and time at which the credential was created. */
|
|
@@ -76199,6 +77344,14 @@ interface Routes {
|
|
|
76199
77344
|
card_id?: string | undefined;
|
|
76200
77345
|
credential_id?: string | undefined;
|
|
76201
77346
|
} | undefined;
|
|
77347
|
+
/** Vostio-specific metadata for the credential. */
|
|
77348
|
+
assa_abloy_vostio_metadata?: {
|
|
77349
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
77350
|
+
key_id?: string | undefined;
|
|
77351
|
+
key_issuing_request_id?: string | undefined;
|
|
77352
|
+
door_names?: string[] | undefined;
|
|
77353
|
+
endpoint_id?: string | undefined;
|
|
77354
|
+
} | undefined;
|
|
76202
77355
|
is_managed: false;
|
|
76203
77356
|
}) | null;
|
|
76204
77357
|
warnings: Array<{
|
|
@@ -76259,7 +77412,7 @@ interface Routes {
|
|
|
76259
77412
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
76260
77413
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
76261
77414
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
76262
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
77415
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
76263
77416
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
76264
77417
|
external_type_display_name?: string | undefined;
|
|
76265
77418
|
/** Date and time at which the credential was created. */
|
|
@@ -76336,6 +77489,14 @@ interface Routes {
|
|
|
76336
77489
|
card_id?: string | undefined;
|
|
76337
77490
|
credential_id?: string | undefined;
|
|
76338
77491
|
} | undefined;
|
|
77492
|
+
/** Vostio-specific metadata for the credential. */
|
|
77493
|
+
assa_abloy_vostio_metadata?: {
|
|
77494
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
77495
|
+
key_id?: string | undefined;
|
|
77496
|
+
key_issuing_request_id?: string | undefined;
|
|
77497
|
+
door_names?: string[] | undefined;
|
|
77498
|
+
endpoint_id?: string | undefined;
|
|
77499
|
+
} | undefined;
|
|
76339
77500
|
is_managed: true;
|
|
76340
77501
|
} | {
|
|
76341
77502
|
/** ID of the credential. */
|
|
@@ -76359,7 +77520,7 @@ interface Routes {
|
|
|
76359
77520
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
76360
77521
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
76361
77522
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
76362
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
77523
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
76363
77524
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
76364
77525
|
external_type_display_name?: string | undefined;
|
|
76365
77526
|
/** Date and time at which the credential was created. */
|
|
@@ -76436,6 +77597,14 @@ interface Routes {
|
|
|
76436
77597
|
card_id?: string | undefined;
|
|
76437
77598
|
credential_id?: string | undefined;
|
|
76438
77599
|
} | undefined;
|
|
77600
|
+
/** Vostio-specific metadata for the credential. */
|
|
77601
|
+
assa_abloy_vostio_metadata?: {
|
|
77602
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
77603
|
+
key_id?: string | undefined;
|
|
77604
|
+
key_issuing_request_id?: string | undefined;
|
|
77605
|
+
door_names?: string[] | undefined;
|
|
77606
|
+
endpoint_id?: string | undefined;
|
|
77607
|
+
} | undefined;
|
|
76439
77608
|
is_managed: false;
|
|
76440
77609
|
};
|
|
76441
77610
|
} | {
|