@seamapi/types 1.748.0 → 1.750.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 +68 -66
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +571 -595
- package/dist/index.cjs +68 -66
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.js +3 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/batch.d.ts +84 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +37 -63
- package/lib/seam/connect/openapi.js +64 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +390 -388
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +67 -64
- package/src/lib/seam/connect/route-types.ts +622 -261
package/dist/connect.d.cts
CHANGED
|
@@ -5188,8 +5188,8 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5188
5188
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5189
5189
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
5190
5190
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5191
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
5192
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
5191
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
5192
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
5193
5193
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5194
5194
|
created_at: z.ZodString;
|
|
5195
5195
|
workspace_id: z.ZodString;
|
|
@@ -5376,7 +5376,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5376
5376
|
is_managed: true;
|
|
5377
5377
|
acs_system_id: string;
|
|
5378
5378
|
acs_credential_id: string;
|
|
5379
|
-
access_method: "code" | "card" | "mobile_key";
|
|
5379
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
5380
5380
|
code?: string | null | undefined;
|
|
5381
5381
|
starts_at?: string | undefined;
|
|
5382
5382
|
ends_at?: string | undefined;
|
|
@@ -5403,7 +5403,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5403
5403
|
issued_at?: string | null | undefined;
|
|
5404
5404
|
is_issued?: boolean | undefined;
|
|
5405
5405
|
acs_user_id?: string | undefined;
|
|
5406
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5406
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5407
5407
|
external_type_display_name?: string | undefined;
|
|
5408
5408
|
acs_credential_pool_id?: string | undefined;
|
|
5409
5409
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -5448,7 +5448,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5448
5448
|
is_managed: true;
|
|
5449
5449
|
acs_system_id: string;
|
|
5450
5450
|
acs_credential_id: string;
|
|
5451
|
-
access_method: "code" | "card" | "mobile_key";
|
|
5451
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
5452
5452
|
code?: string | null | undefined;
|
|
5453
5453
|
starts_at?: string | undefined;
|
|
5454
5454
|
ends_at?: string | undefined;
|
|
@@ -5475,7 +5475,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5475
5475
|
issued_at?: string | null | undefined;
|
|
5476
5476
|
is_issued?: boolean | undefined;
|
|
5477
5477
|
acs_user_id?: string | undefined;
|
|
5478
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5478
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5479
5479
|
external_type_display_name?: string | undefined;
|
|
5480
5480
|
acs_credential_pool_id?: string | undefined;
|
|
5481
5481
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -5498,8 +5498,8 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
5498
5498
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5499
5499
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
5500
5500
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5501
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
5502
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
5501
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
5502
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
5503
5503
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5504
5504
|
created_at: z.ZodString;
|
|
5505
5505
|
workspace_id: z.ZodString;
|
|
@@ -5686,7 +5686,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
5686
5686
|
is_managed: false;
|
|
5687
5687
|
acs_system_id: string;
|
|
5688
5688
|
acs_credential_id: string;
|
|
5689
|
-
access_method: "code" | "card" | "mobile_key";
|
|
5689
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
5690
5690
|
code?: string | null | undefined;
|
|
5691
5691
|
starts_at?: string | undefined;
|
|
5692
5692
|
ends_at?: string | undefined;
|
|
@@ -5713,7 +5713,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
5713
5713
|
issued_at?: string | null | undefined;
|
|
5714
5714
|
is_issued?: boolean | undefined;
|
|
5715
5715
|
acs_user_id?: string | undefined;
|
|
5716
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5716
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5717
5717
|
external_type_display_name?: string | undefined;
|
|
5718
5718
|
acs_credential_pool_id?: string | undefined;
|
|
5719
5719
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -5758,7 +5758,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
5758
5758
|
is_managed: false;
|
|
5759
5759
|
acs_system_id: string;
|
|
5760
5760
|
acs_credential_id: string;
|
|
5761
|
-
access_method: "code" | "card" | "mobile_key";
|
|
5761
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
5762
5762
|
code?: string | null | undefined;
|
|
5763
5763
|
starts_at?: string | undefined;
|
|
5764
5764
|
ends_at?: string | undefined;
|
|
@@ -5785,7 +5785,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
5785
5785
|
issued_at?: string | null | undefined;
|
|
5786
5786
|
is_issued?: boolean | undefined;
|
|
5787
5787
|
acs_user_id?: string | undefined;
|
|
5788
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5788
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
5789
5789
|
external_type_display_name?: string | undefined;
|
|
5790
5790
|
acs_credential_pool_id?: string | undefined;
|
|
5791
5791
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8154,8 +8154,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8154
8154
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8155
8155
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8156
8156
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8157
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
8158
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8157
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8158
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8159
8159
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8160
8160
|
created_at: z.ZodString;
|
|
8161
8161
|
workspace_id: z.ZodString;
|
|
@@ -8342,7 +8342,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8342
8342
|
is_managed: true;
|
|
8343
8343
|
acs_system_id: string;
|
|
8344
8344
|
acs_credential_id: string;
|
|
8345
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8345
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8346
8346
|
code?: string | null | undefined;
|
|
8347
8347
|
starts_at?: string | undefined;
|
|
8348
8348
|
ends_at?: string | undefined;
|
|
@@ -8369,7 +8369,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8369
8369
|
issued_at?: string | null | undefined;
|
|
8370
8370
|
is_issued?: boolean | undefined;
|
|
8371
8371
|
acs_user_id?: string | undefined;
|
|
8372
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8372
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8373
8373
|
external_type_display_name?: string | undefined;
|
|
8374
8374
|
acs_credential_pool_id?: string | undefined;
|
|
8375
8375
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8414,7 +8414,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8414
8414
|
is_managed: true;
|
|
8415
8415
|
acs_system_id: string;
|
|
8416
8416
|
acs_credential_id: string;
|
|
8417
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8417
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8418
8418
|
code?: string | null | undefined;
|
|
8419
8419
|
starts_at?: string | undefined;
|
|
8420
8420
|
ends_at?: string | undefined;
|
|
@@ -8441,7 +8441,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8441
8441
|
issued_at?: string | null | undefined;
|
|
8442
8442
|
is_issued?: boolean | undefined;
|
|
8443
8443
|
acs_user_id?: string | undefined;
|
|
8444
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8444
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8445
8445
|
external_type_display_name?: string | undefined;
|
|
8446
8446
|
acs_credential_pool_id?: string | undefined;
|
|
8447
8447
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8463,8 +8463,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8463
8463
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8464
8464
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8465
8465
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8466
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
8467
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8466
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8467
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8468
8468
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8469
8469
|
created_at: z.ZodString;
|
|
8470
8470
|
workspace_id: z.ZodString;
|
|
@@ -8651,7 +8651,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8651
8651
|
is_managed: false;
|
|
8652
8652
|
acs_system_id: string;
|
|
8653
8653
|
acs_credential_id: string;
|
|
8654
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8654
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8655
8655
|
code?: string | null | undefined;
|
|
8656
8656
|
starts_at?: string | undefined;
|
|
8657
8657
|
ends_at?: string | undefined;
|
|
@@ -8678,7 +8678,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8678
8678
|
issued_at?: string | null | undefined;
|
|
8679
8679
|
is_issued?: boolean | undefined;
|
|
8680
8680
|
acs_user_id?: string | undefined;
|
|
8681
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8681
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8682
8682
|
external_type_display_name?: string | undefined;
|
|
8683
8683
|
acs_credential_pool_id?: string | undefined;
|
|
8684
8684
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8723,7 +8723,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8723
8723
|
is_managed: false;
|
|
8724
8724
|
acs_system_id: string;
|
|
8725
8725
|
acs_credential_id: string;
|
|
8726
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8726
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8727
8727
|
code?: string | null | undefined;
|
|
8728
8728
|
starts_at?: string | undefined;
|
|
8729
8729
|
ends_at?: string | undefined;
|
|
@@ -8750,7 +8750,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8750
8750
|
issued_at?: string | null | undefined;
|
|
8751
8751
|
is_issued?: boolean | undefined;
|
|
8752
8752
|
acs_user_id?: string | undefined;
|
|
8753
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8753
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8754
8754
|
external_type_display_name?: string | undefined;
|
|
8755
8755
|
acs_credential_pool_id?: string | undefined;
|
|
8756
8756
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8832,7 +8832,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8832
8832
|
is_managed: true;
|
|
8833
8833
|
acs_system_id: string;
|
|
8834
8834
|
acs_credential_id: string;
|
|
8835
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8835
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8836
8836
|
code?: string | null | undefined;
|
|
8837
8837
|
starts_at?: string | undefined;
|
|
8838
8838
|
ends_at?: string | undefined;
|
|
@@ -8859,7 +8859,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8859
8859
|
issued_at?: string | null | undefined;
|
|
8860
8860
|
is_issued?: boolean | undefined;
|
|
8861
8861
|
acs_user_id?: string | undefined;
|
|
8862
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8862
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8863
8863
|
external_type_display_name?: string | undefined;
|
|
8864
8864
|
acs_credential_pool_id?: string | undefined;
|
|
8865
8865
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8904,7 +8904,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8904
8904
|
is_managed: false;
|
|
8905
8905
|
acs_system_id: string;
|
|
8906
8906
|
acs_credential_id: string;
|
|
8907
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8907
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8908
8908
|
code?: string | null | undefined;
|
|
8909
8909
|
starts_at?: string | undefined;
|
|
8910
8910
|
ends_at?: string | undefined;
|
|
@@ -8931,7 +8931,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8931
8931
|
issued_at?: string | null | undefined;
|
|
8932
8932
|
is_issued?: boolean | undefined;
|
|
8933
8933
|
acs_user_id?: string | undefined;
|
|
8934
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8934
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8935
8935
|
external_type_display_name?: string | undefined;
|
|
8936
8936
|
acs_credential_pool_id?: string | undefined;
|
|
8937
8937
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9003,7 +9003,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9003
9003
|
is_managed: true;
|
|
9004
9004
|
acs_system_id: string;
|
|
9005
9005
|
acs_credential_id: string;
|
|
9006
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9006
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9007
9007
|
code?: string | null | undefined;
|
|
9008
9008
|
starts_at?: string | undefined;
|
|
9009
9009
|
ends_at?: string | undefined;
|
|
@@ -9030,7 +9030,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9030
9030
|
issued_at?: string | null | undefined;
|
|
9031
9031
|
is_issued?: boolean | undefined;
|
|
9032
9032
|
acs_user_id?: string | undefined;
|
|
9033
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9033
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9034
9034
|
external_type_display_name?: string | undefined;
|
|
9035
9035
|
acs_credential_pool_id?: string | undefined;
|
|
9036
9036
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9075,7 +9075,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9075
9075
|
is_managed: false;
|
|
9076
9076
|
acs_system_id: string;
|
|
9077
9077
|
acs_credential_id: string;
|
|
9078
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9078
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9079
9079
|
code?: string | null | undefined;
|
|
9080
9080
|
starts_at?: string | undefined;
|
|
9081
9081
|
ends_at?: string | undefined;
|
|
@@ -9102,7 +9102,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9102
9102
|
issued_at?: string | null | undefined;
|
|
9103
9103
|
is_issued?: boolean | undefined;
|
|
9104
9104
|
acs_user_id?: string | undefined;
|
|
9105
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9105
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9106
9106
|
external_type_display_name?: string | undefined;
|
|
9107
9107
|
acs_credential_pool_id?: string | undefined;
|
|
9108
9108
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9179,7 +9179,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9179
9179
|
is_managed: true;
|
|
9180
9180
|
acs_system_id: string;
|
|
9181
9181
|
acs_credential_id: string;
|
|
9182
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9182
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9183
9183
|
code?: string | null | undefined;
|
|
9184
9184
|
starts_at?: string | undefined;
|
|
9185
9185
|
ends_at?: string | undefined;
|
|
@@ -9206,7 +9206,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9206
9206
|
issued_at?: string | null | undefined;
|
|
9207
9207
|
is_issued?: boolean | undefined;
|
|
9208
9208
|
acs_user_id?: string | undefined;
|
|
9209
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9209
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9210
9210
|
external_type_display_name?: string | undefined;
|
|
9211
9211
|
acs_credential_pool_id?: string | undefined;
|
|
9212
9212
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9251,7 +9251,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9251
9251
|
is_managed: false;
|
|
9252
9252
|
acs_system_id: string;
|
|
9253
9253
|
acs_credential_id: string;
|
|
9254
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9254
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9255
9255
|
code?: string | null | undefined;
|
|
9256
9256
|
starts_at?: string | undefined;
|
|
9257
9257
|
ends_at?: string | undefined;
|
|
@@ -9278,7 +9278,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9278
9278
|
issued_at?: string | null | undefined;
|
|
9279
9279
|
is_issued?: boolean | undefined;
|
|
9280
9280
|
acs_user_id?: string | undefined;
|
|
9281
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9281
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9282
9282
|
external_type_display_name?: string | undefined;
|
|
9283
9283
|
acs_credential_pool_id?: string | undefined;
|
|
9284
9284
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9356,7 +9356,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9356
9356
|
is_managed: true;
|
|
9357
9357
|
acs_system_id: string;
|
|
9358
9358
|
acs_credential_id: string;
|
|
9359
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9359
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9360
9360
|
code?: string | null | undefined;
|
|
9361
9361
|
starts_at?: string | undefined;
|
|
9362
9362
|
ends_at?: string | undefined;
|
|
@@ -9383,7 +9383,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9383
9383
|
issued_at?: string | null | undefined;
|
|
9384
9384
|
is_issued?: boolean | undefined;
|
|
9385
9385
|
acs_user_id?: string | undefined;
|
|
9386
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9386
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9387
9387
|
external_type_display_name?: string | undefined;
|
|
9388
9388
|
acs_credential_pool_id?: string | undefined;
|
|
9389
9389
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9428,7 +9428,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9428
9428
|
is_managed: false;
|
|
9429
9429
|
acs_system_id: string;
|
|
9430
9430
|
acs_credential_id: string;
|
|
9431
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9431
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9432
9432
|
code?: string | null | undefined;
|
|
9433
9433
|
starts_at?: string | undefined;
|
|
9434
9434
|
ends_at?: string | undefined;
|
|
@@ -9455,7 +9455,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9455
9455
|
issued_at?: string | null | undefined;
|
|
9456
9456
|
is_issued?: boolean | undefined;
|
|
9457
9457
|
acs_user_id?: string | undefined;
|
|
9458
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9458
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9459
9459
|
external_type_display_name?: string | undefined;
|
|
9460
9460
|
acs_credential_pool_id?: string | undefined;
|
|
9461
9461
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9587,8 +9587,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9587
9587
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9588
9588
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9589
9589
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9590
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
9591
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9590
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9591
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9592
9592
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9593
9593
|
created_at: z.ZodString;
|
|
9594
9594
|
workspace_id: z.ZodString;
|
|
@@ -9775,7 +9775,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9775
9775
|
is_managed: true;
|
|
9776
9776
|
acs_system_id: string;
|
|
9777
9777
|
acs_credential_id: string;
|
|
9778
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9778
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9779
9779
|
code?: string | null | undefined;
|
|
9780
9780
|
starts_at?: string | undefined;
|
|
9781
9781
|
ends_at?: string | undefined;
|
|
@@ -9802,7 +9802,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9802
9802
|
issued_at?: string | null | undefined;
|
|
9803
9803
|
is_issued?: boolean | undefined;
|
|
9804
9804
|
acs_user_id?: string | undefined;
|
|
9805
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9805
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9806
9806
|
external_type_display_name?: string | undefined;
|
|
9807
9807
|
acs_credential_pool_id?: string | undefined;
|
|
9808
9808
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9847,7 +9847,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9847
9847
|
is_managed: true;
|
|
9848
9848
|
acs_system_id: string;
|
|
9849
9849
|
acs_credential_id: string;
|
|
9850
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9850
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9851
9851
|
code?: string | null | undefined;
|
|
9852
9852
|
starts_at?: string | undefined;
|
|
9853
9853
|
ends_at?: string | undefined;
|
|
@@ -9874,7 +9874,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9874
9874
|
issued_at?: string | null | undefined;
|
|
9875
9875
|
is_issued?: boolean | undefined;
|
|
9876
9876
|
acs_user_id?: string | undefined;
|
|
9877
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9877
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9878
9878
|
external_type_display_name?: string | undefined;
|
|
9879
9879
|
acs_credential_pool_id?: string | undefined;
|
|
9880
9880
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9896,8 +9896,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9896
9896
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9897
9897
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9898
9898
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9899
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
9900
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9899
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9900
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9901
9901
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9902
9902
|
created_at: z.ZodString;
|
|
9903
9903
|
workspace_id: z.ZodString;
|
|
@@ -10084,7 +10084,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10084
10084
|
is_managed: false;
|
|
10085
10085
|
acs_system_id: string;
|
|
10086
10086
|
acs_credential_id: string;
|
|
10087
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10087
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10088
10088
|
code?: string | null | undefined;
|
|
10089
10089
|
starts_at?: string | undefined;
|
|
10090
10090
|
ends_at?: string | undefined;
|
|
@@ -10111,7 +10111,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10111
10111
|
issued_at?: string | null | undefined;
|
|
10112
10112
|
is_issued?: boolean | undefined;
|
|
10113
10113
|
acs_user_id?: string | undefined;
|
|
10114
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10114
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10115
10115
|
external_type_display_name?: string | undefined;
|
|
10116
10116
|
acs_credential_pool_id?: string | undefined;
|
|
10117
10117
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10156,7 +10156,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10156
10156
|
is_managed: false;
|
|
10157
10157
|
acs_system_id: string;
|
|
10158
10158
|
acs_credential_id: string;
|
|
10159
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10159
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10160
10160
|
code?: string | null | undefined;
|
|
10161
10161
|
starts_at?: string | undefined;
|
|
10162
10162
|
ends_at?: string | undefined;
|
|
@@ -10183,7 +10183,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10183
10183
|
issued_at?: string | null | undefined;
|
|
10184
10184
|
is_issued?: boolean | undefined;
|
|
10185
10185
|
acs_user_id?: string | undefined;
|
|
10186
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10186
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10187
10187
|
external_type_display_name?: string | undefined;
|
|
10188
10188
|
acs_credential_pool_id?: string | undefined;
|
|
10189
10189
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10233,7 +10233,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10233
10233
|
is_managed: true;
|
|
10234
10234
|
acs_system_id: string;
|
|
10235
10235
|
acs_credential_id: string;
|
|
10236
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10236
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10237
10237
|
code?: string | null | undefined;
|
|
10238
10238
|
starts_at?: string | undefined;
|
|
10239
10239
|
ends_at?: string | undefined;
|
|
@@ -10260,7 +10260,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10260
10260
|
issued_at?: string | null | undefined;
|
|
10261
10261
|
is_issued?: boolean | undefined;
|
|
10262
10262
|
acs_user_id?: string | undefined;
|
|
10263
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10263
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10264
10264
|
external_type_display_name?: string | undefined;
|
|
10265
10265
|
acs_credential_pool_id?: string | undefined;
|
|
10266
10266
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10305,7 +10305,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10305
10305
|
is_managed: false;
|
|
10306
10306
|
acs_system_id: string;
|
|
10307
10307
|
acs_credential_id: string;
|
|
10308
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10308
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10309
10309
|
code?: string | null | undefined;
|
|
10310
10310
|
starts_at?: string | undefined;
|
|
10311
10311
|
ends_at?: string | undefined;
|
|
@@ -10332,7 +10332,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10332
10332
|
issued_at?: string | null | undefined;
|
|
10333
10333
|
is_issued?: boolean | undefined;
|
|
10334
10334
|
acs_user_id?: string | undefined;
|
|
10335
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10335
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10336
10336
|
external_type_display_name?: string | undefined;
|
|
10337
10337
|
acs_credential_pool_id?: string | undefined;
|
|
10338
10338
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10383,7 +10383,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10383
10383
|
is_managed: true;
|
|
10384
10384
|
acs_system_id: string;
|
|
10385
10385
|
acs_credential_id: string;
|
|
10386
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10386
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10387
10387
|
code?: string | null | undefined;
|
|
10388
10388
|
starts_at?: string | undefined;
|
|
10389
10389
|
ends_at?: string | undefined;
|
|
@@ -10410,7 +10410,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10410
10410
|
issued_at?: string | null | undefined;
|
|
10411
10411
|
is_issued?: boolean | undefined;
|
|
10412
10412
|
acs_user_id?: string | undefined;
|
|
10413
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10413
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10414
10414
|
external_type_display_name?: string | undefined;
|
|
10415
10415
|
acs_credential_pool_id?: string | undefined;
|
|
10416
10416
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10455,7 +10455,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10455
10455
|
is_managed: false;
|
|
10456
10456
|
acs_system_id: string;
|
|
10457
10457
|
acs_credential_id: string;
|
|
10458
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10458
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10459
10459
|
code?: string | null | undefined;
|
|
10460
10460
|
starts_at?: string | undefined;
|
|
10461
10461
|
ends_at?: string | undefined;
|
|
@@ -10482,7 +10482,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10482
10482
|
issued_at?: string | null | undefined;
|
|
10483
10483
|
is_issued?: boolean | undefined;
|
|
10484
10484
|
acs_user_id?: string | undefined;
|
|
10485
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10485
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10486
10486
|
external_type_display_name?: string | undefined;
|
|
10487
10487
|
acs_credential_pool_id?: string | undefined;
|
|
10488
10488
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -18629,8 +18629,8 @@ declare const batch: z.ZodObject<{
|
|
|
18629
18629
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18630
18630
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
18631
18631
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18632
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
18633
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
18632
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
18633
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
18634
18634
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
18635
18635
|
created_at: z.ZodString;
|
|
18636
18636
|
workspace_id: z.ZodString;
|
|
@@ -18817,7 +18817,7 @@ declare const batch: z.ZodObject<{
|
|
|
18817
18817
|
is_managed: true;
|
|
18818
18818
|
acs_system_id: string;
|
|
18819
18819
|
acs_credential_id: string;
|
|
18820
|
-
access_method: "code" | "card" | "mobile_key";
|
|
18820
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
18821
18821
|
code?: string | null | undefined;
|
|
18822
18822
|
starts_at?: string | undefined;
|
|
18823
18823
|
ends_at?: string | undefined;
|
|
@@ -18844,7 +18844,7 @@ declare const batch: z.ZodObject<{
|
|
|
18844
18844
|
issued_at?: string | null | undefined;
|
|
18845
18845
|
is_issued?: boolean | undefined;
|
|
18846
18846
|
acs_user_id?: string | undefined;
|
|
18847
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
18847
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
18848
18848
|
external_type_display_name?: string | undefined;
|
|
18849
18849
|
acs_credential_pool_id?: string | undefined;
|
|
18850
18850
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -18889,7 +18889,7 @@ declare const batch: z.ZodObject<{
|
|
|
18889
18889
|
is_managed: true;
|
|
18890
18890
|
acs_system_id: string;
|
|
18891
18891
|
acs_credential_id: string;
|
|
18892
|
-
access_method: "code" | "card" | "mobile_key";
|
|
18892
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
18893
18893
|
code?: string | null | undefined;
|
|
18894
18894
|
starts_at?: string | undefined;
|
|
18895
18895
|
ends_at?: string | undefined;
|
|
@@ -18916,7 +18916,7 @@ declare const batch: z.ZodObject<{
|
|
|
18916
18916
|
issued_at?: string | null | undefined;
|
|
18917
18917
|
is_issued?: boolean | undefined;
|
|
18918
18918
|
acs_user_id?: string | undefined;
|
|
18919
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
18919
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
18920
18920
|
external_type_display_name?: string | undefined;
|
|
18921
18921
|
acs_credential_pool_id?: string | undefined;
|
|
18922
18922
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -18939,8 +18939,8 @@ declare const batch: z.ZodObject<{
|
|
|
18939
18939
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18940
18940
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
18941
18941
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18942
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
18943
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
18942
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
18943
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
18944
18944
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
18945
18945
|
created_at: z.ZodString;
|
|
18946
18946
|
workspace_id: z.ZodString;
|
|
@@ -19127,7 +19127,7 @@ declare const batch: z.ZodObject<{
|
|
|
19127
19127
|
is_managed: false;
|
|
19128
19128
|
acs_system_id: string;
|
|
19129
19129
|
acs_credential_id: string;
|
|
19130
|
-
access_method: "code" | "card" | "mobile_key";
|
|
19130
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
19131
19131
|
code?: string | null | undefined;
|
|
19132
19132
|
starts_at?: string | undefined;
|
|
19133
19133
|
ends_at?: string | undefined;
|
|
@@ -19154,7 +19154,7 @@ declare const batch: z.ZodObject<{
|
|
|
19154
19154
|
issued_at?: string | null | undefined;
|
|
19155
19155
|
is_issued?: boolean | undefined;
|
|
19156
19156
|
acs_user_id?: string | undefined;
|
|
19157
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19157
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19158
19158
|
external_type_display_name?: string | undefined;
|
|
19159
19159
|
acs_credential_pool_id?: string | undefined;
|
|
19160
19160
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19199,7 +19199,7 @@ declare const batch: z.ZodObject<{
|
|
|
19199
19199
|
is_managed: false;
|
|
19200
19200
|
acs_system_id: string;
|
|
19201
19201
|
acs_credential_id: string;
|
|
19202
|
-
access_method: "code" | "card" | "mobile_key";
|
|
19202
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
19203
19203
|
code?: string | null | undefined;
|
|
19204
19204
|
starts_at?: string | undefined;
|
|
19205
19205
|
ends_at?: string | undefined;
|
|
@@ -19226,7 +19226,7 @@ declare const batch: z.ZodObject<{
|
|
|
19226
19226
|
issued_at?: string | null | undefined;
|
|
19227
19227
|
is_issued?: boolean | undefined;
|
|
19228
19228
|
acs_user_id?: string | undefined;
|
|
19229
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19229
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19230
19230
|
external_type_display_name?: string | undefined;
|
|
19231
19231
|
acs_credential_pool_id?: string | undefined;
|
|
19232
19232
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19534,8 +19534,8 @@ declare const batch: z.ZodObject<{
|
|
|
19534
19534
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19535
19535
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
19536
19536
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19537
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
19538
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
19537
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
19538
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
19539
19539
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
19540
19540
|
created_at: z.ZodString;
|
|
19541
19541
|
workspace_id: z.ZodString;
|
|
@@ -19722,7 +19722,7 @@ declare const batch: z.ZodObject<{
|
|
|
19722
19722
|
is_managed: true;
|
|
19723
19723
|
acs_system_id: string;
|
|
19724
19724
|
acs_credential_id: string;
|
|
19725
|
-
access_method: "code" | "card" | "mobile_key";
|
|
19725
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
19726
19726
|
code?: string | null | undefined;
|
|
19727
19727
|
starts_at?: string | undefined;
|
|
19728
19728
|
ends_at?: string | undefined;
|
|
@@ -19749,7 +19749,7 @@ declare const batch: z.ZodObject<{
|
|
|
19749
19749
|
issued_at?: string | null | undefined;
|
|
19750
19750
|
is_issued?: boolean | undefined;
|
|
19751
19751
|
acs_user_id?: string | undefined;
|
|
19752
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19752
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19753
19753
|
external_type_display_name?: string | undefined;
|
|
19754
19754
|
acs_credential_pool_id?: string | undefined;
|
|
19755
19755
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19794,7 +19794,7 @@ declare const batch: z.ZodObject<{
|
|
|
19794
19794
|
is_managed: true;
|
|
19795
19795
|
acs_system_id: string;
|
|
19796
19796
|
acs_credential_id: string;
|
|
19797
|
-
access_method: "code" | "card" | "mobile_key";
|
|
19797
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
19798
19798
|
code?: string | null | undefined;
|
|
19799
19799
|
starts_at?: string | undefined;
|
|
19800
19800
|
ends_at?: string | undefined;
|
|
@@ -19821,7 +19821,7 @@ declare const batch: z.ZodObject<{
|
|
|
19821
19821
|
issued_at?: string | null | undefined;
|
|
19822
19822
|
is_issued?: boolean | undefined;
|
|
19823
19823
|
acs_user_id?: string | undefined;
|
|
19824
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19824
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
19825
19825
|
external_type_display_name?: string | undefined;
|
|
19826
19826
|
acs_credential_pool_id?: string | undefined;
|
|
19827
19827
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19843,8 +19843,8 @@ declare const batch: z.ZodObject<{
|
|
|
19843
19843
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19844
19844
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
19845
19845
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19846
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
19847
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
19846
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
19847
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
19848
19848
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
19849
19849
|
created_at: z.ZodString;
|
|
19850
19850
|
workspace_id: z.ZodString;
|
|
@@ -20031,7 +20031,7 @@ declare const batch: z.ZodObject<{
|
|
|
20031
20031
|
is_managed: false;
|
|
20032
20032
|
acs_system_id: string;
|
|
20033
20033
|
acs_credential_id: string;
|
|
20034
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20034
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20035
20035
|
code?: string | null | undefined;
|
|
20036
20036
|
starts_at?: string | undefined;
|
|
20037
20037
|
ends_at?: string | undefined;
|
|
@@ -20058,7 +20058,7 @@ declare const batch: z.ZodObject<{
|
|
|
20058
20058
|
issued_at?: string | null | undefined;
|
|
20059
20059
|
is_issued?: boolean | undefined;
|
|
20060
20060
|
acs_user_id?: string | undefined;
|
|
20061
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20061
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20062
20062
|
external_type_display_name?: string | undefined;
|
|
20063
20063
|
acs_credential_pool_id?: string | undefined;
|
|
20064
20064
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20103,7 +20103,7 @@ declare const batch: z.ZodObject<{
|
|
|
20103
20103
|
is_managed: false;
|
|
20104
20104
|
acs_system_id: string;
|
|
20105
20105
|
acs_credential_id: string;
|
|
20106
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20106
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20107
20107
|
code?: string | null | undefined;
|
|
20108
20108
|
starts_at?: string | undefined;
|
|
20109
20109
|
ends_at?: string | undefined;
|
|
@@ -20130,7 +20130,7 @@ declare const batch: z.ZodObject<{
|
|
|
20130
20130
|
issued_at?: string | null | undefined;
|
|
20131
20131
|
is_issued?: boolean | undefined;
|
|
20132
20132
|
acs_user_id?: string | undefined;
|
|
20133
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20133
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20134
20134
|
external_type_display_name?: string | undefined;
|
|
20135
20135
|
acs_credential_pool_id?: string | undefined;
|
|
20136
20136
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20212,7 +20212,7 @@ declare const batch: z.ZodObject<{
|
|
|
20212
20212
|
is_managed: true;
|
|
20213
20213
|
acs_system_id: string;
|
|
20214
20214
|
acs_credential_id: string;
|
|
20215
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20215
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20216
20216
|
code?: string | null | undefined;
|
|
20217
20217
|
starts_at?: string | undefined;
|
|
20218
20218
|
ends_at?: string | undefined;
|
|
@@ -20239,7 +20239,7 @@ declare const batch: z.ZodObject<{
|
|
|
20239
20239
|
issued_at?: string | null | undefined;
|
|
20240
20240
|
is_issued?: boolean | undefined;
|
|
20241
20241
|
acs_user_id?: string | undefined;
|
|
20242
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20242
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20243
20243
|
external_type_display_name?: string | undefined;
|
|
20244
20244
|
acs_credential_pool_id?: string | undefined;
|
|
20245
20245
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20284,7 +20284,7 @@ declare const batch: z.ZodObject<{
|
|
|
20284
20284
|
is_managed: false;
|
|
20285
20285
|
acs_system_id: string;
|
|
20286
20286
|
acs_credential_id: string;
|
|
20287
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20287
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20288
20288
|
code?: string | null | undefined;
|
|
20289
20289
|
starts_at?: string | undefined;
|
|
20290
20290
|
ends_at?: string | undefined;
|
|
@@ -20311,7 +20311,7 @@ declare const batch: z.ZodObject<{
|
|
|
20311
20311
|
issued_at?: string | null | undefined;
|
|
20312
20312
|
is_issued?: boolean | undefined;
|
|
20313
20313
|
acs_user_id?: string | undefined;
|
|
20314
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20314
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20315
20315
|
external_type_display_name?: string | undefined;
|
|
20316
20316
|
acs_credential_pool_id?: string | undefined;
|
|
20317
20317
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20383,7 +20383,7 @@ declare const batch: z.ZodObject<{
|
|
|
20383
20383
|
is_managed: true;
|
|
20384
20384
|
acs_system_id: string;
|
|
20385
20385
|
acs_credential_id: string;
|
|
20386
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20386
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20387
20387
|
code?: string | null | undefined;
|
|
20388
20388
|
starts_at?: string | undefined;
|
|
20389
20389
|
ends_at?: string | undefined;
|
|
@@ -20410,7 +20410,7 @@ declare const batch: z.ZodObject<{
|
|
|
20410
20410
|
issued_at?: string | null | undefined;
|
|
20411
20411
|
is_issued?: boolean | undefined;
|
|
20412
20412
|
acs_user_id?: string | undefined;
|
|
20413
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20413
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20414
20414
|
external_type_display_name?: string | undefined;
|
|
20415
20415
|
acs_credential_pool_id?: string | undefined;
|
|
20416
20416
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20455,7 +20455,7 @@ declare const batch: z.ZodObject<{
|
|
|
20455
20455
|
is_managed: false;
|
|
20456
20456
|
acs_system_id: string;
|
|
20457
20457
|
acs_credential_id: string;
|
|
20458
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20458
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20459
20459
|
code?: string | null | undefined;
|
|
20460
20460
|
starts_at?: string | undefined;
|
|
20461
20461
|
ends_at?: string | undefined;
|
|
@@ -20482,7 +20482,7 @@ declare const batch: z.ZodObject<{
|
|
|
20482
20482
|
issued_at?: string | null | undefined;
|
|
20483
20483
|
is_issued?: boolean | undefined;
|
|
20484
20484
|
acs_user_id?: string | undefined;
|
|
20485
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20485
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20486
20486
|
external_type_display_name?: string | undefined;
|
|
20487
20487
|
acs_credential_pool_id?: string | undefined;
|
|
20488
20488
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20559,7 +20559,7 @@ declare const batch: z.ZodObject<{
|
|
|
20559
20559
|
is_managed: true;
|
|
20560
20560
|
acs_system_id: string;
|
|
20561
20561
|
acs_credential_id: string;
|
|
20562
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20562
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20563
20563
|
code?: string | null | undefined;
|
|
20564
20564
|
starts_at?: string | undefined;
|
|
20565
20565
|
ends_at?: string | undefined;
|
|
@@ -20586,7 +20586,7 @@ declare const batch: z.ZodObject<{
|
|
|
20586
20586
|
issued_at?: string | null | undefined;
|
|
20587
20587
|
is_issued?: boolean | undefined;
|
|
20588
20588
|
acs_user_id?: string | undefined;
|
|
20589
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20589
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20590
20590
|
external_type_display_name?: string | undefined;
|
|
20591
20591
|
acs_credential_pool_id?: string | undefined;
|
|
20592
20592
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20631,7 +20631,7 @@ declare const batch: z.ZodObject<{
|
|
|
20631
20631
|
is_managed: false;
|
|
20632
20632
|
acs_system_id: string;
|
|
20633
20633
|
acs_credential_id: string;
|
|
20634
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20634
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20635
20635
|
code?: string | null | undefined;
|
|
20636
20636
|
starts_at?: string | undefined;
|
|
20637
20637
|
ends_at?: string | undefined;
|
|
@@ -20658,7 +20658,7 @@ declare const batch: z.ZodObject<{
|
|
|
20658
20658
|
issued_at?: string | null | undefined;
|
|
20659
20659
|
is_issued?: boolean | undefined;
|
|
20660
20660
|
acs_user_id?: string | undefined;
|
|
20661
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20661
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20662
20662
|
external_type_display_name?: string | undefined;
|
|
20663
20663
|
acs_credential_pool_id?: string | undefined;
|
|
20664
20664
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20736,7 +20736,7 @@ declare const batch: z.ZodObject<{
|
|
|
20736
20736
|
is_managed: true;
|
|
20737
20737
|
acs_system_id: string;
|
|
20738
20738
|
acs_credential_id: string;
|
|
20739
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20739
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20740
20740
|
code?: string | null | undefined;
|
|
20741
20741
|
starts_at?: string | undefined;
|
|
20742
20742
|
ends_at?: string | undefined;
|
|
@@ -20763,7 +20763,7 @@ declare const batch: z.ZodObject<{
|
|
|
20763
20763
|
issued_at?: string | null | undefined;
|
|
20764
20764
|
is_issued?: boolean | undefined;
|
|
20765
20765
|
acs_user_id?: string | undefined;
|
|
20766
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20766
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20767
20767
|
external_type_display_name?: string | undefined;
|
|
20768
20768
|
acs_credential_pool_id?: string | undefined;
|
|
20769
20769
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20808,7 +20808,7 @@ declare const batch: z.ZodObject<{
|
|
|
20808
20808
|
is_managed: false;
|
|
20809
20809
|
acs_system_id: string;
|
|
20810
20810
|
acs_credential_id: string;
|
|
20811
|
-
access_method: "code" | "card" | "mobile_key";
|
|
20811
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
20812
20812
|
code?: string | null | undefined;
|
|
20813
20813
|
starts_at?: string | undefined;
|
|
20814
20814
|
ends_at?: string | undefined;
|
|
@@ -20835,7 +20835,7 @@ declare const batch: z.ZodObject<{
|
|
|
20835
20835
|
issued_at?: string | null | undefined;
|
|
20836
20836
|
is_issued?: boolean | undefined;
|
|
20837
20837
|
acs_user_id?: string | undefined;
|
|
20838
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20838
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
20839
20839
|
external_type_display_name?: string | undefined;
|
|
20840
20840
|
acs_credential_pool_id?: string | undefined;
|
|
20841
20841
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20967,8 +20967,8 @@ declare const batch: z.ZodObject<{
|
|
|
20967
20967
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20968
20968
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
20969
20969
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20970
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
20971
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
20970
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
20971
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
20972
20972
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
20973
20973
|
created_at: z.ZodString;
|
|
20974
20974
|
workspace_id: z.ZodString;
|
|
@@ -21155,7 +21155,7 @@ declare const batch: z.ZodObject<{
|
|
|
21155
21155
|
is_managed: true;
|
|
21156
21156
|
acs_system_id: string;
|
|
21157
21157
|
acs_credential_id: string;
|
|
21158
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21158
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21159
21159
|
code?: string | null | undefined;
|
|
21160
21160
|
starts_at?: string | undefined;
|
|
21161
21161
|
ends_at?: string | undefined;
|
|
@@ -21182,7 +21182,7 @@ declare const batch: z.ZodObject<{
|
|
|
21182
21182
|
issued_at?: string | null | undefined;
|
|
21183
21183
|
is_issued?: boolean | undefined;
|
|
21184
21184
|
acs_user_id?: string | undefined;
|
|
21185
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21185
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21186
21186
|
external_type_display_name?: string | undefined;
|
|
21187
21187
|
acs_credential_pool_id?: string | undefined;
|
|
21188
21188
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21227,7 +21227,7 @@ declare const batch: z.ZodObject<{
|
|
|
21227
21227
|
is_managed: true;
|
|
21228
21228
|
acs_system_id: string;
|
|
21229
21229
|
acs_credential_id: string;
|
|
21230
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21230
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21231
21231
|
code?: string | null | undefined;
|
|
21232
21232
|
starts_at?: string | undefined;
|
|
21233
21233
|
ends_at?: string | undefined;
|
|
@@ -21254,7 +21254,7 @@ declare const batch: z.ZodObject<{
|
|
|
21254
21254
|
issued_at?: string | null | undefined;
|
|
21255
21255
|
is_issued?: boolean | undefined;
|
|
21256
21256
|
acs_user_id?: string | undefined;
|
|
21257
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21257
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21258
21258
|
external_type_display_name?: string | undefined;
|
|
21259
21259
|
acs_credential_pool_id?: string | undefined;
|
|
21260
21260
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21276,8 +21276,8 @@ declare const batch: z.ZodObject<{
|
|
|
21276
21276
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
21277
21277
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
21278
21278
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
21279
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
21280
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
21279
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
21280
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
21281
21281
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
21282
21282
|
created_at: z.ZodString;
|
|
21283
21283
|
workspace_id: z.ZodString;
|
|
@@ -21464,7 +21464,7 @@ declare const batch: z.ZodObject<{
|
|
|
21464
21464
|
is_managed: false;
|
|
21465
21465
|
acs_system_id: string;
|
|
21466
21466
|
acs_credential_id: string;
|
|
21467
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21467
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21468
21468
|
code?: string | null | undefined;
|
|
21469
21469
|
starts_at?: string | undefined;
|
|
21470
21470
|
ends_at?: string | undefined;
|
|
@@ -21491,7 +21491,7 @@ declare const batch: z.ZodObject<{
|
|
|
21491
21491
|
issued_at?: string | null | undefined;
|
|
21492
21492
|
is_issued?: boolean | undefined;
|
|
21493
21493
|
acs_user_id?: string | undefined;
|
|
21494
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21494
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21495
21495
|
external_type_display_name?: string | undefined;
|
|
21496
21496
|
acs_credential_pool_id?: string | undefined;
|
|
21497
21497
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21536,7 +21536,7 @@ declare const batch: z.ZodObject<{
|
|
|
21536
21536
|
is_managed: false;
|
|
21537
21537
|
acs_system_id: string;
|
|
21538
21538
|
acs_credential_id: string;
|
|
21539
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21539
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21540
21540
|
code?: string | null | undefined;
|
|
21541
21541
|
starts_at?: string | undefined;
|
|
21542
21542
|
ends_at?: string | undefined;
|
|
@@ -21563,7 +21563,7 @@ declare const batch: z.ZodObject<{
|
|
|
21563
21563
|
issued_at?: string | null | undefined;
|
|
21564
21564
|
is_issued?: boolean | undefined;
|
|
21565
21565
|
acs_user_id?: string | undefined;
|
|
21566
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21566
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21567
21567
|
external_type_display_name?: string | undefined;
|
|
21568
21568
|
acs_credential_pool_id?: string | undefined;
|
|
21569
21569
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21613,7 +21613,7 @@ declare const batch: z.ZodObject<{
|
|
|
21613
21613
|
is_managed: true;
|
|
21614
21614
|
acs_system_id: string;
|
|
21615
21615
|
acs_credential_id: string;
|
|
21616
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21616
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21617
21617
|
code?: string | null | undefined;
|
|
21618
21618
|
starts_at?: string | undefined;
|
|
21619
21619
|
ends_at?: string | undefined;
|
|
@@ -21640,7 +21640,7 @@ declare const batch: z.ZodObject<{
|
|
|
21640
21640
|
issued_at?: string | null | undefined;
|
|
21641
21641
|
is_issued?: boolean | undefined;
|
|
21642
21642
|
acs_user_id?: string | undefined;
|
|
21643
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21643
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21644
21644
|
external_type_display_name?: string | undefined;
|
|
21645
21645
|
acs_credential_pool_id?: string | undefined;
|
|
21646
21646
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21685,7 +21685,7 @@ declare const batch: z.ZodObject<{
|
|
|
21685
21685
|
is_managed: false;
|
|
21686
21686
|
acs_system_id: string;
|
|
21687
21687
|
acs_credential_id: string;
|
|
21688
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21688
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21689
21689
|
code?: string | null | undefined;
|
|
21690
21690
|
starts_at?: string | undefined;
|
|
21691
21691
|
ends_at?: string | undefined;
|
|
@@ -21712,7 +21712,7 @@ declare const batch: z.ZodObject<{
|
|
|
21712
21712
|
issued_at?: string | null | undefined;
|
|
21713
21713
|
is_issued?: boolean | undefined;
|
|
21714
21714
|
acs_user_id?: string | undefined;
|
|
21715
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21715
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21716
21716
|
external_type_display_name?: string | undefined;
|
|
21717
21717
|
acs_credential_pool_id?: string | undefined;
|
|
21718
21718
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21763,7 +21763,7 @@ declare const batch: z.ZodObject<{
|
|
|
21763
21763
|
is_managed: true;
|
|
21764
21764
|
acs_system_id: string;
|
|
21765
21765
|
acs_credential_id: string;
|
|
21766
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21766
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21767
21767
|
code?: string | null | undefined;
|
|
21768
21768
|
starts_at?: string | undefined;
|
|
21769
21769
|
ends_at?: string | undefined;
|
|
@@ -21790,7 +21790,7 @@ declare const batch: z.ZodObject<{
|
|
|
21790
21790
|
issued_at?: string | null | undefined;
|
|
21791
21791
|
is_issued?: boolean | undefined;
|
|
21792
21792
|
acs_user_id?: string | undefined;
|
|
21793
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21793
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21794
21794
|
external_type_display_name?: string | undefined;
|
|
21795
21795
|
acs_credential_pool_id?: string | undefined;
|
|
21796
21796
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21835,7 +21835,7 @@ declare const batch: z.ZodObject<{
|
|
|
21835
21835
|
is_managed: false;
|
|
21836
21836
|
acs_system_id: string;
|
|
21837
21837
|
acs_credential_id: string;
|
|
21838
|
-
access_method: "code" | "card" | "mobile_key";
|
|
21838
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
21839
21839
|
code?: string | null | undefined;
|
|
21840
21840
|
starts_at?: string | undefined;
|
|
21841
21841
|
ends_at?: string | undefined;
|
|
@@ -21862,7 +21862,7 @@ declare const batch: z.ZodObject<{
|
|
|
21862
21862
|
issued_at?: string | null | undefined;
|
|
21863
21863
|
is_issued?: boolean | undefined;
|
|
21864
21864
|
acs_user_id?: string | undefined;
|
|
21865
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21865
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
21866
21866
|
external_type_display_name?: string | undefined;
|
|
21867
21867
|
acs_credential_pool_id?: string | undefined;
|
|
21868
21868
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38117,7 +38117,7 @@ declare const batch: z.ZodObject<{
|
|
|
38117
38117
|
is_managed: true;
|
|
38118
38118
|
acs_system_id: string;
|
|
38119
38119
|
acs_credential_id: string;
|
|
38120
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38120
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38121
38121
|
code?: string | null | undefined;
|
|
38122
38122
|
starts_at?: string | undefined;
|
|
38123
38123
|
ends_at?: string | undefined;
|
|
@@ -38144,7 +38144,7 @@ declare const batch: z.ZodObject<{
|
|
|
38144
38144
|
issued_at?: string | null | undefined;
|
|
38145
38145
|
is_issued?: boolean | undefined;
|
|
38146
38146
|
acs_user_id?: string | undefined;
|
|
38147
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38147
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38148
38148
|
external_type_display_name?: string | undefined;
|
|
38149
38149
|
acs_credential_pool_id?: string | undefined;
|
|
38150
38150
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38190,7 +38190,7 @@ declare const batch: z.ZodObject<{
|
|
|
38190
38190
|
is_managed: false;
|
|
38191
38191
|
acs_system_id: string;
|
|
38192
38192
|
acs_credential_id: string;
|
|
38193
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38193
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38194
38194
|
code?: string | null | undefined;
|
|
38195
38195
|
starts_at?: string | undefined;
|
|
38196
38196
|
ends_at?: string | undefined;
|
|
@@ -38217,7 +38217,7 @@ declare const batch: z.ZodObject<{
|
|
|
38217
38217
|
issued_at?: string | null | undefined;
|
|
38218
38218
|
is_issued?: boolean | undefined;
|
|
38219
38219
|
acs_user_id?: string | undefined;
|
|
38220
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38220
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38221
38221
|
external_type_display_name?: string | undefined;
|
|
38222
38222
|
acs_credential_pool_id?: string | undefined;
|
|
38223
38223
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38449,7 +38449,7 @@ declare const batch: z.ZodObject<{
|
|
|
38449
38449
|
is_managed: true;
|
|
38450
38450
|
acs_system_id: string;
|
|
38451
38451
|
acs_credential_id: string;
|
|
38452
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38452
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38453
38453
|
code?: string | null | undefined;
|
|
38454
38454
|
starts_at?: string | undefined;
|
|
38455
38455
|
ends_at?: string | undefined;
|
|
@@ -38476,7 +38476,7 @@ declare const batch: z.ZodObject<{
|
|
|
38476
38476
|
issued_at?: string | null | undefined;
|
|
38477
38477
|
is_issued?: boolean | undefined;
|
|
38478
38478
|
acs_user_id?: string | undefined;
|
|
38479
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38479
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38480
38480
|
external_type_display_name?: string | undefined;
|
|
38481
38481
|
acs_credential_pool_id?: string | undefined;
|
|
38482
38482
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38521,7 +38521,7 @@ declare const batch: z.ZodObject<{
|
|
|
38521
38521
|
is_managed: false;
|
|
38522
38522
|
acs_system_id: string;
|
|
38523
38523
|
acs_credential_id: string;
|
|
38524
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38524
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38525
38525
|
code?: string | null | undefined;
|
|
38526
38526
|
starts_at?: string | undefined;
|
|
38527
38527
|
ends_at?: string | undefined;
|
|
@@ -38548,7 +38548,7 @@ declare const batch: z.ZodObject<{
|
|
|
38548
38548
|
issued_at?: string | null | undefined;
|
|
38549
38549
|
is_issued?: boolean | undefined;
|
|
38550
38550
|
acs_user_id?: string | undefined;
|
|
38551
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38551
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38552
38552
|
external_type_display_name?: string | undefined;
|
|
38553
38553
|
acs_credential_pool_id?: string | undefined;
|
|
38554
38554
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38720,7 +38720,7 @@ declare const batch: z.ZodObject<{
|
|
|
38720
38720
|
is_managed: true;
|
|
38721
38721
|
acs_system_id: string;
|
|
38722
38722
|
acs_credential_id: string;
|
|
38723
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38723
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38724
38724
|
code?: string | null | undefined;
|
|
38725
38725
|
starts_at?: string | undefined;
|
|
38726
38726
|
ends_at?: string | undefined;
|
|
@@ -38747,7 +38747,7 @@ declare const batch: z.ZodObject<{
|
|
|
38747
38747
|
issued_at?: string | null | undefined;
|
|
38748
38748
|
is_issued?: boolean | undefined;
|
|
38749
38749
|
acs_user_id?: string | undefined;
|
|
38750
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38750
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38751
38751
|
external_type_display_name?: string | undefined;
|
|
38752
38752
|
acs_credential_pool_id?: string | undefined;
|
|
38753
38753
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38792,7 +38792,7 @@ declare const batch: z.ZodObject<{
|
|
|
38792
38792
|
is_managed: false;
|
|
38793
38793
|
acs_system_id: string;
|
|
38794
38794
|
acs_credential_id: string;
|
|
38795
|
-
access_method: "code" | "card" | "mobile_key";
|
|
38795
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
38796
38796
|
code?: string | null | undefined;
|
|
38797
38797
|
starts_at?: string | undefined;
|
|
38798
38798
|
ends_at?: string | undefined;
|
|
@@ -38819,7 +38819,7 @@ declare const batch: z.ZodObject<{
|
|
|
38819
38819
|
issued_at?: string | null | undefined;
|
|
38820
38820
|
is_issued?: boolean | undefined;
|
|
38821
38821
|
acs_user_id?: string | undefined;
|
|
38822
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38822
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
38823
38823
|
external_type_display_name?: string | undefined;
|
|
38824
38824
|
acs_credential_pool_id?: string | undefined;
|
|
38825
38825
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -42919,7 +42919,7 @@ declare const batch: z.ZodObject<{
|
|
|
42919
42919
|
is_managed: true;
|
|
42920
42920
|
acs_system_id: string;
|
|
42921
42921
|
acs_credential_id: string;
|
|
42922
|
-
access_method: "code" | "card" | "mobile_key";
|
|
42922
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
42923
42923
|
code?: string | null | undefined;
|
|
42924
42924
|
starts_at?: string | undefined;
|
|
42925
42925
|
ends_at?: string | undefined;
|
|
@@ -42946,7 +42946,7 @@ declare const batch: z.ZodObject<{
|
|
|
42946
42946
|
issued_at?: string | null | undefined;
|
|
42947
42947
|
is_issued?: boolean | undefined;
|
|
42948
42948
|
acs_user_id?: string | undefined;
|
|
42949
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
42949
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
42950
42950
|
external_type_display_name?: string | undefined;
|
|
42951
42951
|
acs_credential_pool_id?: string | undefined;
|
|
42952
42952
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -42992,7 +42992,7 @@ declare const batch: z.ZodObject<{
|
|
|
42992
42992
|
is_managed: false;
|
|
42993
42993
|
acs_system_id: string;
|
|
42994
42994
|
acs_credential_id: string;
|
|
42995
|
-
access_method: "code" | "card" | "mobile_key";
|
|
42995
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
42996
42996
|
code?: string | null | undefined;
|
|
42997
42997
|
starts_at?: string | undefined;
|
|
42998
42998
|
ends_at?: string | undefined;
|
|
@@ -43019,7 +43019,7 @@ declare const batch: z.ZodObject<{
|
|
|
43019
43019
|
issued_at?: string | null | undefined;
|
|
43020
43020
|
is_issued?: boolean | undefined;
|
|
43021
43021
|
acs_user_id?: string | undefined;
|
|
43022
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43022
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43023
43023
|
external_type_display_name?: string | undefined;
|
|
43024
43024
|
acs_credential_pool_id?: string | undefined;
|
|
43025
43025
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -43251,7 +43251,7 @@ declare const batch: z.ZodObject<{
|
|
|
43251
43251
|
is_managed: true;
|
|
43252
43252
|
acs_system_id: string;
|
|
43253
43253
|
acs_credential_id: string;
|
|
43254
|
-
access_method: "code" | "card" | "mobile_key";
|
|
43254
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
43255
43255
|
code?: string | null | undefined;
|
|
43256
43256
|
starts_at?: string | undefined;
|
|
43257
43257
|
ends_at?: string | undefined;
|
|
@@ -43278,7 +43278,7 @@ declare const batch: z.ZodObject<{
|
|
|
43278
43278
|
issued_at?: string | null | undefined;
|
|
43279
43279
|
is_issued?: boolean | undefined;
|
|
43280
43280
|
acs_user_id?: string | undefined;
|
|
43281
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43281
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43282
43282
|
external_type_display_name?: string | undefined;
|
|
43283
43283
|
acs_credential_pool_id?: string | undefined;
|
|
43284
43284
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -43323,7 +43323,7 @@ declare const batch: z.ZodObject<{
|
|
|
43323
43323
|
is_managed: false;
|
|
43324
43324
|
acs_system_id: string;
|
|
43325
43325
|
acs_credential_id: string;
|
|
43326
|
-
access_method: "code" | "card" | "mobile_key";
|
|
43326
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
43327
43327
|
code?: string | null | undefined;
|
|
43328
43328
|
starts_at?: string | undefined;
|
|
43329
43329
|
ends_at?: string | undefined;
|
|
@@ -43350,7 +43350,7 @@ declare const batch: z.ZodObject<{
|
|
|
43350
43350
|
issued_at?: string | null | undefined;
|
|
43351
43351
|
is_issued?: boolean | undefined;
|
|
43352
43352
|
acs_user_id?: string | undefined;
|
|
43353
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43353
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43354
43354
|
external_type_display_name?: string | undefined;
|
|
43355
43355
|
acs_credential_pool_id?: string | undefined;
|
|
43356
43356
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -43522,7 +43522,7 @@ declare const batch: z.ZodObject<{
|
|
|
43522
43522
|
is_managed: true;
|
|
43523
43523
|
acs_system_id: string;
|
|
43524
43524
|
acs_credential_id: string;
|
|
43525
|
-
access_method: "code" | "card" | "mobile_key";
|
|
43525
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
43526
43526
|
code?: string | null | undefined;
|
|
43527
43527
|
starts_at?: string | undefined;
|
|
43528
43528
|
ends_at?: string | undefined;
|
|
@@ -43549,7 +43549,7 @@ declare const batch: z.ZodObject<{
|
|
|
43549
43549
|
issued_at?: string | null | undefined;
|
|
43550
43550
|
is_issued?: boolean | undefined;
|
|
43551
43551
|
acs_user_id?: string | undefined;
|
|
43552
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43552
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43553
43553
|
external_type_display_name?: string | undefined;
|
|
43554
43554
|
acs_credential_pool_id?: string | undefined;
|
|
43555
43555
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -43594,7 +43594,7 @@ declare const batch: z.ZodObject<{
|
|
|
43594
43594
|
is_managed: false;
|
|
43595
43595
|
acs_system_id: string;
|
|
43596
43596
|
acs_credential_id: string;
|
|
43597
|
-
access_method: "code" | "card" | "mobile_key";
|
|
43597
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
43598
43598
|
code?: string | null | undefined;
|
|
43599
43599
|
starts_at?: string | undefined;
|
|
43600
43600
|
ends_at?: string | undefined;
|
|
@@ -43621,7 +43621,7 @@ declare const batch: z.ZodObject<{
|
|
|
43621
43621
|
issued_at?: string | null | undefined;
|
|
43622
43622
|
is_issued?: boolean | undefined;
|
|
43623
43623
|
acs_user_id?: string | undefined;
|
|
43624
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43624
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
43625
43625
|
external_type_display_name?: string | undefined;
|
|
43626
43626
|
acs_credential_pool_id?: string | undefined;
|
|
43627
43627
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -111970,6 +111970,14 @@ declare const _default: {
|
|
|
111970
111970
|
get: {
|
|
111971
111971
|
description: string;
|
|
111972
111972
|
operationId: string;
|
|
111973
|
+
parameters: {
|
|
111974
|
+
in: string;
|
|
111975
|
+
name: string;
|
|
111976
|
+
schema: {
|
|
111977
|
+
description: string;
|
|
111978
|
+
type: string;
|
|
111979
|
+
};
|
|
111980
|
+
}[];
|
|
111973
111981
|
responses: {
|
|
111974
111982
|
200: {
|
|
111975
111983
|
content: {
|
|
@@ -112239,15 +112247,9 @@ declare const _default: {
|
|
|
112239
112247
|
security: ({
|
|
112240
112248
|
console_session_with_workspace: never[];
|
|
112241
112249
|
api_key?: never;
|
|
112242
|
-
client_session_with_customer?: never;
|
|
112243
112250
|
} | {
|
|
112244
112251
|
api_key: never[];
|
|
112245
112252
|
console_session_with_workspace?: never;
|
|
112246
|
-
client_session_with_customer?: never;
|
|
112247
|
-
} | {
|
|
112248
|
-
client_session_with_customer: never[];
|
|
112249
|
-
console_session_with_workspace?: never;
|
|
112250
|
-
api_key?: never;
|
|
112251
112253
|
})[];
|
|
112252
112254
|
summary: string;
|
|
112253
112255
|
tags: never[];
|
|
@@ -112260,6 +112262,21 @@ declare const _default: {
|
|
|
112260
112262
|
post: {
|
|
112261
112263
|
description: string;
|
|
112262
112264
|
operationId: string;
|
|
112265
|
+
requestBody: {
|
|
112266
|
+
content: {
|
|
112267
|
+
'application/json': {
|
|
112268
|
+
schema: {
|
|
112269
|
+
properties: {
|
|
112270
|
+
customer_key: {
|
|
112271
|
+
description: string;
|
|
112272
|
+
type: string;
|
|
112273
|
+
};
|
|
112274
|
+
};
|
|
112275
|
+
type: string;
|
|
112276
|
+
};
|
|
112277
|
+
};
|
|
112278
|
+
};
|
|
112279
|
+
};
|
|
112263
112280
|
responses: {
|
|
112264
112281
|
200: {
|
|
112265
112282
|
content: {
|
|
@@ -112529,15 +112546,9 @@ declare const _default: {
|
|
|
112529
112546
|
security: ({
|
|
112530
112547
|
console_session_with_workspace: never[];
|
|
112531
112548
|
api_key?: never;
|
|
112532
|
-
client_session_with_customer?: never;
|
|
112533
112549
|
} | {
|
|
112534
112550
|
api_key: never[];
|
|
112535
112551
|
console_session_with_workspace?: never;
|
|
112536
|
-
client_session_with_customer?: never;
|
|
112537
|
-
} | {
|
|
112538
|
-
client_session_with_customer: never[];
|
|
112539
|
-
console_session_with_workspace?: never;
|
|
112540
|
-
api_key?: never;
|
|
112541
112552
|
})[];
|
|
112542
112553
|
summary: string;
|
|
112543
112554
|
tags: never[];
|
|
@@ -112809,6 +112820,10 @@ declare const _default: {
|
|
|
112809
112820
|
};
|
|
112810
112821
|
type: string;
|
|
112811
112822
|
};
|
|
112823
|
+
customer_key: {
|
|
112824
|
+
description: string;
|
|
112825
|
+
type: string;
|
|
112826
|
+
};
|
|
112812
112827
|
};
|
|
112813
112828
|
type: string;
|
|
112814
112829
|
};
|
|
@@ -113114,6 +113129,10 @@ declare const _default: {
|
|
|
113114
113129
|
};
|
|
113115
113130
|
type: string;
|
|
113116
113131
|
};
|
|
113132
|
+
customer_key: {
|
|
113133
|
+
description: string;
|
|
113134
|
+
type: string;
|
|
113135
|
+
};
|
|
113117
113136
|
};
|
|
113118
113137
|
type: string;
|
|
113119
113138
|
};
|
|
@@ -114289,15 +114308,6 @@ declare const _default: {
|
|
|
114289
114308
|
get: {
|
|
114290
114309
|
description: string;
|
|
114291
114310
|
operationId: string;
|
|
114292
|
-
parameters: {
|
|
114293
|
-
in: string;
|
|
114294
|
-
name: string;
|
|
114295
|
-
required: boolean;
|
|
114296
|
-
schema: {
|
|
114297
|
-
description: string;
|
|
114298
|
-
type: string;
|
|
114299
|
-
};
|
|
114300
|
-
}[];
|
|
114301
114311
|
responses: {
|
|
114302
114312
|
200: {
|
|
114303
114313
|
content: {
|
|
@@ -114569,19 +114579,9 @@ declare const _default: {
|
|
|
114569
114579
|
description: string;
|
|
114570
114580
|
};
|
|
114571
114581
|
};
|
|
114572
|
-
security:
|
|
114573
|
-
|
|
114574
|
-
|
|
114575
|
-
api_key?: never;
|
|
114576
|
-
} | {
|
|
114577
|
-
console_session_with_workspace: never[];
|
|
114578
|
-
pat_with_workspace?: never;
|
|
114579
|
-
api_key?: never;
|
|
114580
|
-
} | {
|
|
114581
|
-
api_key: never[];
|
|
114582
|
-
pat_with_workspace?: never;
|
|
114583
|
-
console_session_with_workspace?: never;
|
|
114584
|
-
})[];
|
|
114582
|
+
security: {
|
|
114583
|
+
client_session_with_customer: never[];
|
|
114584
|
+
}[];
|
|
114585
114585
|
summary: string;
|
|
114586
114586
|
tags: never[];
|
|
114587
114587
|
'x-fern-sdk-group-name': string[];
|
|
@@ -114593,22 +114593,6 @@ declare const _default: {
|
|
|
114593
114593
|
post: {
|
|
114594
114594
|
description: string;
|
|
114595
114595
|
operationId: string;
|
|
114596
|
-
requestBody: {
|
|
114597
|
-
content: {
|
|
114598
|
-
'application/json': {
|
|
114599
|
-
schema: {
|
|
114600
|
-
properties: {
|
|
114601
|
-
customer_key: {
|
|
114602
|
-
description: string;
|
|
114603
|
-
type: string;
|
|
114604
|
-
};
|
|
114605
|
-
};
|
|
114606
|
-
required: string[];
|
|
114607
|
-
type: string;
|
|
114608
|
-
};
|
|
114609
|
-
};
|
|
114610
|
-
};
|
|
114611
|
-
};
|
|
114612
114596
|
responses: {
|
|
114613
114597
|
200: {
|
|
114614
114598
|
content: {
|
|
@@ -114880,19 +114864,9 @@ declare const _default: {
|
|
|
114880
114864
|
description: string;
|
|
114881
114865
|
};
|
|
114882
114866
|
};
|
|
114883
|
-
security:
|
|
114884
|
-
|
|
114885
|
-
|
|
114886
|
-
api_key?: never;
|
|
114887
|
-
} | {
|
|
114888
|
-
console_session_with_workspace: never[];
|
|
114889
|
-
pat_with_workspace?: never;
|
|
114890
|
-
api_key?: never;
|
|
114891
|
-
} | {
|
|
114892
|
-
api_key: never[];
|
|
114893
|
-
pat_with_workspace?: never;
|
|
114894
|
-
console_session_with_workspace?: never;
|
|
114895
|
-
})[];
|
|
114867
|
+
security: {
|
|
114868
|
+
client_session_with_customer: never[];
|
|
114869
|
+
}[];
|
|
114896
114870
|
summary: string;
|
|
114897
114871
|
tags: never[];
|
|
114898
114872
|
'x-fern-sdk-group-name': string[];
|
|
@@ -132917,10 +132891,10 @@ type Routes = {
|
|
|
132917
132891
|
is_issued?: boolean | undefined;
|
|
132918
132892
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
132919
132893
|
issued_at?: (string | undefined) | null;
|
|
132920
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
132921
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
132894
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
132895
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
132922
132896
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
132923
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
132897
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
132924
132898
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
132925
132899
|
external_type_display_name?: string | undefined;
|
|
132926
132900
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -133047,10 +133021,10 @@ type Routes = {
|
|
|
133047
133021
|
is_issued?: boolean | undefined;
|
|
133048
133022
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
133049
133023
|
issued_at?: (string | undefined) | null;
|
|
133050
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
133051
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
133024
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
133025
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
133052
133026
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
133053
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133027
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133054
133028
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
133055
133029
|
external_type_display_name?: string | undefined;
|
|
133056
133030
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -133234,10 +133208,10 @@ type Routes = {
|
|
|
133234
133208
|
is_issued?: boolean | undefined;
|
|
133235
133209
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
133236
133210
|
issued_at?: (string | undefined) | null;
|
|
133237
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
133238
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
133211
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
133212
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
133239
133213
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
133240
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133214
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133241
133215
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
133242
133216
|
external_type_display_name?: string | undefined;
|
|
133243
133217
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -133364,10 +133338,10 @@ type Routes = {
|
|
|
133364
133338
|
is_issued?: boolean | undefined;
|
|
133365
133339
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
133366
133340
|
issued_at?: (string | undefined) | null;
|
|
133367
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
133368
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
133341
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
133342
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
133369
133343
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
133370
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133344
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
133371
133345
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
133372
133346
|
external_type_display_name?: string | undefined;
|
|
133373
133347
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135246,10 +135220,10 @@ type Routes = {
|
|
|
135246
135220
|
is_issued?: boolean | undefined;
|
|
135247
135221
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
135248
135222
|
issued_at?: (string | undefined) | null;
|
|
135249
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
135250
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
135223
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135224
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135251
135225
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135252
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135226
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135253
135227
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135254
135228
|
external_type_display_name?: string | undefined;
|
|
135255
135229
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135376,10 +135350,10 @@ type Routes = {
|
|
|
135376
135350
|
is_issued?: boolean | undefined;
|
|
135377
135351
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
135378
135352
|
issued_at?: (string | undefined) | null;
|
|
135379
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
135380
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
135353
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135354
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135381
135355
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135382
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135356
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135383
135357
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135384
135358
|
external_type_display_name?: string | undefined;
|
|
135385
135359
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135563,10 +135537,10 @@ type Routes = {
|
|
|
135563
135537
|
is_issued?: boolean | undefined;
|
|
135564
135538
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
135565
135539
|
issued_at?: (string | undefined) | null;
|
|
135566
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
135567
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
135540
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135541
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135568
135542
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135569
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135543
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135570
135544
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135571
135545
|
external_type_display_name?: string | undefined;
|
|
135572
135546
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135693,10 +135667,10 @@ type Routes = {
|
|
|
135693
135667
|
is_issued?: boolean | undefined;
|
|
135694
135668
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
135695
135669
|
issued_at?: (string | undefined) | null;
|
|
135696
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
135697
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
135670
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135671
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135698
135672
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135699
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135673
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
135700
135674
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135701
135675
|
external_type_display_name?: string | undefined;
|
|
135702
135676
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -139247,10 +139221,10 @@ type Routes = {
|
|
|
139247
139221
|
is_issued?: boolean | undefined;
|
|
139248
139222
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
139249
139223
|
issued_at?: (string | undefined) | null;
|
|
139250
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
139251
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
139224
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
139225
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
139252
139226
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
139253
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139227
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139254
139228
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
139255
139229
|
external_type_display_name?: string | undefined;
|
|
139256
139230
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -139377,10 +139351,10 @@ type Routes = {
|
|
|
139377
139351
|
is_issued?: boolean | undefined;
|
|
139378
139352
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
139379
139353
|
issued_at?: (string | undefined) | null;
|
|
139380
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
139381
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
139354
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
139355
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
139382
139356
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
139383
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139357
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139384
139358
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
139385
139359
|
external_type_display_name?: string | undefined;
|
|
139386
139360
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -139564,10 +139538,10 @@ type Routes = {
|
|
|
139564
139538
|
is_issued?: boolean | undefined;
|
|
139565
139539
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
139566
139540
|
issued_at?: (string | undefined) | null;
|
|
139567
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
139568
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
139541
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
139542
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
139569
139543
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
139570
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139544
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139571
139545
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
139572
139546
|
external_type_display_name?: string | undefined;
|
|
139573
139547
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -139694,10 +139668,10 @@ type Routes = {
|
|
|
139694
139668
|
is_issued?: boolean | undefined;
|
|
139695
139669
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
139696
139670
|
issued_at?: (string | undefined) | null;
|
|
139697
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
139698
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
139671
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
139672
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
139699
139673
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
139700
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139674
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
139701
139675
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
139702
139676
|
external_type_display_name?: string | undefined;
|
|
139703
139677
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -141612,10 +141586,10 @@ type Routes = {
|
|
|
141612
141586
|
is_issued?: boolean | undefined;
|
|
141613
141587
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
141614
141588
|
issued_at?: (string | undefined) | null;
|
|
141615
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
141616
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
141589
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
141590
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
141617
141591
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141618
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141592
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141619
141593
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
141620
141594
|
external_type_display_name?: string | undefined;
|
|
141621
141595
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -141742,10 +141716,10 @@ type Routes = {
|
|
|
141742
141716
|
is_issued?: boolean | undefined;
|
|
141743
141717
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
141744
141718
|
issued_at?: (string | undefined) | null;
|
|
141745
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
141746
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
141719
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
141720
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
141747
141721
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141748
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141722
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141749
141723
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
141750
141724
|
external_type_display_name?: string | undefined;
|
|
141751
141725
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -141929,10 +141903,10 @@ type Routes = {
|
|
|
141929
141903
|
is_issued?: boolean | undefined;
|
|
141930
141904
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
141931
141905
|
issued_at?: (string | undefined) | null;
|
|
141932
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
141933
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
141906
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
141907
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
141934
141908
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141935
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141909
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
141936
141910
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
141937
141911
|
external_type_display_name?: string | undefined;
|
|
141938
141912
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -142059,10 +142033,10 @@ type Routes = {
|
|
|
142059
142033
|
is_issued?: boolean | undefined;
|
|
142060
142034
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
142061
142035
|
issued_at?: (string | undefined) | null;
|
|
142062
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
142063
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
142036
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
142037
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
142064
142038
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
142065
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
142039
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
142066
142040
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
142067
142041
|
external_type_display_name?: string | undefined;
|
|
142068
142042
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146141,10 +146115,10 @@ type Routes = {
|
|
|
146141
146115
|
is_issued?: boolean | undefined;
|
|
146142
146116
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
146143
146117
|
issued_at?: (string | undefined) | null;
|
|
146144
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
146145
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
146118
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146119
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146146
146120
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146147
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146121
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146148
146122
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146149
146123
|
external_type_display_name?: string | undefined;
|
|
146150
146124
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146271,10 +146245,10 @@ type Routes = {
|
|
|
146271
146245
|
is_issued?: boolean | undefined;
|
|
146272
146246
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
146273
146247
|
issued_at?: (string | undefined) | null;
|
|
146274
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
146275
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
146248
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146249
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146276
146250
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146277
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146251
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146278
146252
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146279
146253
|
external_type_display_name?: string | undefined;
|
|
146280
146254
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146458,10 +146432,10 @@ type Routes = {
|
|
|
146458
146432
|
is_issued?: boolean | undefined;
|
|
146459
146433
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
146460
146434
|
issued_at?: (string | undefined) | null;
|
|
146461
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
146462
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
146435
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146436
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146463
146437
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146464
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146438
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146465
146439
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146466
146440
|
external_type_display_name?: string | undefined;
|
|
146467
146441
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146588,10 +146562,10 @@ type Routes = {
|
|
|
146588
146562
|
is_issued?: boolean | undefined;
|
|
146589
146563
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
146590
146564
|
issued_at?: (string | undefined) | null;
|
|
146591
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
146592
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
146565
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146566
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146593
146567
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146594
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146568
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
146595
146569
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146596
146570
|
external_type_display_name?: string | undefined;
|
|
146597
146571
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -149177,10 +149151,10 @@ type Routes = {
|
|
|
149177
149151
|
is_issued?: boolean | undefined;
|
|
149178
149152
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
149179
149153
|
issued_at?: (string | undefined) | null;
|
|
149180
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
149181
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
149154
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
149155
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
149182
149156
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
149183
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
149157
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
149184
149158
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
149185
149159
|
external_type_display_name?: string | undefined;
|
|
149186
149160
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -150884,10 +150858,10 @@ type Routes = {
|
|
|
150884
150858
|
is_issued?: boolean | undefined;
|
|
150885
150859
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
150886
150860
|
issued_at?: (string | undefined) | null;
|
|
150887
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
150888
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
150861
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150862
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150889
150863
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
150890
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
150864
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
150891
150865
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
150892
150866
|
external_type_display_name?: string | undefined;
|
|
150893
150867
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151006,8 +150980,8 @@ type Routes = {
|
|
|
151006
150980
|
user_identity_id?: string | undefined;
|
|
151007
150981
|
/** ID of the access system to which the new credential belongs. You must provide either `acs_user_id` or the combination of `user_identity_id` and `acs_system_id`. */
|
|
151008
150982
|
acs_system_id?: string | undefined;
|
|
151009
|
-
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
151010
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
150983
|
+
/** Access method for the new credential. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150984
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151011
150985
|
/** Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview). */
|
|
151012
150986
|
code?: string | undefined;
|
|
151013
150987
|
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
@@ -151085,10 +151059,10 @@ type Routes = {
|
|
|
151085
151059
|
is_issued?: boolean | undefined;
|
|
151086
151060
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
151087
151061
|
issued_at?: (string | undefined) | null;
|
|
151088
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
151089
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
151062
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151063
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151090
151064
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151091
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151065
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151092
151066
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151093
151067
|
external_type_display_name?: string | undefined;
|
|
151094
151068
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151243,10 +151217,10 @@ type Routes = {
|
|
|
151243
151217
|
is_issued?: boolean | undefined;
|
|
151244
151218
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
151245
151219
|
issued_at?: (string | undefined) | null;
|
|
151246
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
151247
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
151220
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151221
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151248
151222
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151249
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151223
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151250
151224
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151251
151225
|
external_type_display_name?: string | undefined;
|
|
151252
151226
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151406,10 +151380,10 @@ type Routes = {
|
|
|
151406
151380
|
is_issued?: boolean | undefined;
|
|
151407
151381
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
151408
151382
|
issued_at?: (string | undefined) | null;
|
|
151409
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
151410
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
151383
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151384
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151411
151385
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151412
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151386
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151413
151387
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151414
151388
|
external_type_display_name?: string | undefined;
|
|
151415
151389
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151573,10 +151547,10 @@ type Routes = {
|
|
|
151573
151547
|
is_issued?: boolean | undefined;
|
|
151574
151548
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
151575
151549
|
issued_at?: (string | undefined) | null;
|
|
151576
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
151577
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
151550
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151551
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151578
151552
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151579
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151553
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151580
151554
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151581
151555
|
external_type_display_name?: string | undefined;
|
|
151582
151556
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151879,10 +151853,10 @@ type Routes = {
|
|
|
151879
151853
|
is_issued?: boolean | undefined;
|
|
151880
151854
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
151881
151855
|
issued_at?: (string | undefined) | null;
|
|
151882
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
151883
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
151856
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151857
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151884
151858
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151885
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151859
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
151886
151860
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151887
151861
|
external_type_display_name?: string | undefined;
|
|
151888
151862
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152025,10 +151999,10 @@ type Routes = {
|
|
|
152025
151999
|
is_issued?: boolean | undefined;
|
|
152026
152000
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152027
152001
|
issued_at?: (string | undefined) | null;
|
|
152028
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152029
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152002
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152003
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152030
152004
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152031
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152005
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152032
152006
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152033
152007
|
external_type_display_name?: string | undefined;
|
|
152034
152008
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152184,10 +152158,10 @@ type Routes = {
|
|
|
152184
152158
|
is_issued?: boolean | undefined;
|
|
152185
152159
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152186
152160
|
issued_at?: (string | undefined) | null;
|
|
152187
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152188
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152161
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152162
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152189
152163
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152190
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152164
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152191
152165
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152192
152166
|
external_type_display_name?: string | undefined;
|
|
152193
152167
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152338,10 +152312,10 @@ type Routes = {
|
|
|
152338
152312
|
is_issued?: boolean | undefined;
|
|
152339
152313
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152340
152314
|
issued_at?: (string | undefined) | null;
|
|
152341
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152342
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152315
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152316
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152343
152317
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152344
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152318
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152345
152319
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152346
152320
|
external_type_display_name?: string | undefined;
|
|
152347
152321
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152628,10 +152602,10 @@ type Routes = {
|
|
|
152628
152602
|
is_issued?: boolean | undefined;
|
|
152629
152603
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152630
152604
|
issued_at?: (string | undefined) | null;
|
|
152631
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152632
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152605
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152606
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152633
152607
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152634
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152608
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152635
152609
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152636
152610
|
external_type_display_name?: string | undefined;
|
|
152637
152611
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152758,10 +152732,10 @@ type Routes = {
|
|
|
152758
152732
|
is_issued?: boolean | undefined;
|
|
152759
152733
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152760
152734
|
issued_at?: (string | undefined) | null;
|
|
152761
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152762
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152735
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152736
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152763
152737
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152764
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152738
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152765
152739
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152766
152740
|
external_type_display_name?: string | undefined;
|
|
152767
152741
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -152945,10 +152919,10 @@ type Routes = {
|
|
|
152945
152919
|
is_issued?: boolean | undefined;
|
|
152946
152920
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
152947
152921
|
issued_at?: (string | undefined) | null;
|
|
152948
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
152949
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
152922
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
152923
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
152950
152924
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
152951
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152925
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
152952
152926
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
152953
152927
|
external_type_display_name?: string | undefined;
|
|
152954
152928
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -153075,10 +153049,10 @@ type Routes = {
|
|
|
153075
153049
|
is_issued?: boolean | undefined;
|
|
153076
153050
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
153077
153051
|
issued_at?: (string | undefined) | null;
|
|
153078
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
153079
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
153052
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
153053
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
153080
153054
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
153081
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
153055
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
153082
153056
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
153083
153057
|
external_type_display_name?: string | undefined;
|
|
153084
153058
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -154011,10 +153985,10 @@ type Routes = {
|
|
|
154011
153985
|
is_issued?: boolean | undefined;
|
|
154012
153986
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
154013
153987
|
issued_at?: (string | undefined) | null;
|
|
154014
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
154015
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
153988
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
153989
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
154016
153990
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
154017
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
153991
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154018
153992
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
154019
153993
|
external_type_display_name?: string | undefined;
|
|
154020
153994
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -154141,10 +154115,10 @@ type Routes = {
|
|
|
154141
154115
|
is_issued?: boolean | undefined;
|
|
154142
154116
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
154143
154117
|
issued_at?: (string | undefined) | null;
|
|
154144
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
154145
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
154118
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
154119
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
154146
154120
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
154147
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154121
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154148
154122
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
154149
154123
|
external_type_display_name?: string | undefined;
|
|
154150
154124
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -154328,10 +154302,10 @@ type Routes = {
|
|
|
154328
154302
|
is_issued?: boolean | undefined;
|
|
154329
154303
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
154330
154304
|
issued_at?: (string | undefined) | null;
|
|
154331
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
154332
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
154305
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
154306
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
154333
154307
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
154334
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154308
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154335
154309
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
154336
154310
|
external_type_display_name?: string | undefined;
|
|
154337
154311
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -154458,10 +154432,10 @@ type Routes = {
|
|
|
154458
154432
|
is_issued?: boolean | undefined;
|
|
154459
154433
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
154460
154434
|
issued_at?: (string | undefined) | null;
|
|
154461
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
154462
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
154435
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
154436
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
154463
154437
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
154464
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154438
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
154465
154439
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
154466
154440
|
external_type_display_name?: string | undefined;
|
|
154467
154441
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -155564,10 +155538,10 @@ type Routes = {
|
|
|
155564
155538
|
is_issued?: boolean | undefined;
|
|
155565
155539
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
155566
155540
|
issued_at?: (string | undefined) | null;
|
|
155567
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
155568
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
155541
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
155542
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
155569
155543
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
155570
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
155544
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
155571
155545
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
155572
155546
|
external_type_display_name?: string | undefined;
|
|
155573
155547
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -157885,10 +157859,10 @@ type Routes = {
|
|
|
157885
157859
|
is_issued?: boolean | undefined;
|
|
157886
157860
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
157887
157861
|
issued_at?: (string | undefined) | null;
|
|
157888
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
157889
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
157862
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
157863
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
157890
157864
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
157891
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
157865
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
157892
157866
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
157893
157867
|
external_type_display_name?: string | undefined;
|
|
157894
157868
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158015,10 +157989,10 @@ type Routes = {
|
|
|
158015
157989
|
is_issued?: boolean | undefined;
|
|
158016
157990
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
158017
157991
|
issued_at?: (string | undefined) | null;
|
|
158018
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
158019
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
157992
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
157993
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158020
157994
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158021
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
157995
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
158022
157996
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158023
157997
|
external_type_display_name?: string | undefined;
|
|
158024
157998
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158202,10 +158176,10 @@ type Routes = {
|
|
|
158202
158176
|
is_issued?: boolean | undefined;
|
|
158203
158177
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
158204
158178
|
issued_at?: (string | undefined) | null;
|
|
158205
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
158206
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
158179
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158180
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158207
158181
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158208
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
158182
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
158209
158183
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158210
158184
|
external_type_display_name?: string | undefined;
|
|
158211
158185
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158332,10 +158306,10 @@ type Routes = {
|
|
|
158332
158306
|
is_issued?: boolean | undefined;
|
|
158333
158307
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
158334
158308
|
issued_at?: (string | undefined) | null;
|
|
158335
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
158336
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
158309
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158310
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158337
158311
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158338
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
158312
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
158339
158313
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158340
158314
|
external_type_display_name?: string | undefined;
|
|
158341
158315
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -159161,10 +159135,10 @@ type Routes = {
|
|
|
159161
159135
|
is_issued?: boolean | undefined;
|
|
159162
159136
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
159163
159137
|
issued_at?: (string | undefined) | null;
|
|
159164
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
159165
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
159138
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
159139
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
159166
159140
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
159167
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159141
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159168
159142
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
159169
159143
|
external_type_display_name?: string | undefined;
|
|
159170
159144
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -159291,10 +159265,10 @@ type Routes = {
|
|
|
159291
159265
|
is_issued?: boolean | undefined;
|
|
159292
159266
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
159293
159267
|
issued_at?: (string | undefined) | null;
|
|
159294
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
159295
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
159268
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
159269
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
159296
159270
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
159297
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159271
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159298
159272
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
159299
159273
|
external_type_display_name?: string | undefined;
|
|
159300
159274
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -159478,10 +159452,10 @@ type Routes = {
|
|
|
159478
159452
|
is_issued?: boolean | undefined;
|
|
159479
159453
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
159480
159454
|
issued_at?: (string | undefined) | null;
|
|
159481
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
159482
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
159455
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
159456
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
159483
159457
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
159484
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159458
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159485
159459
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
159486
159460
|
external_type_display_name?: string | undefined;
|
|
159487
159461
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -159608,10 +159582,10 @@ type Routes = {
|
|
|
159608
159582
|
is_issued?: boolean | undefined;
|
|
159609
159583
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
159610
159584
|
issued_at?: (string | undefined) | null;
|
|
159611
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
159612
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
159585
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
159586
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
159613
159587
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
159614
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159588
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
159615
159589
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
159616
159590
|
external_type_display_name?: string | undefined;
|
|
159617
159591
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -177198,10 +177172,10 @@ type Routes = {
|
|
|
177198
177172
|
is_issued?: boolean | undefined;
|
|
177199
177173
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
177200
177174
|
issued_at?: (string | undefined) | null;
|
|
177201
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
177202
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
177175
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
177176
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
177203
177177
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
177204
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177178
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177205
177179
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
177206
177180
|
external_type_display_name?: string | undefined;
|
|
177207
177181
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -177328,10 +177302,10 @@ type Routes = {
|
|
|
177328
177302
|
is_issued?: boolean | undefined;
|
|
177329
177303
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
177330
177304
|
issued_at?: (string | undefined) | null;
|
|
177331
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
177332
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
177305
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
177306
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
177333
177307
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
177334
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177308
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177335
177309
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
177336
177310
|
external_type_display_name?: string | undefined;
|
|
177337
177311
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -177515,10 +177489,10 @@ type Routes = {
|
|
|
177515
177489
|
is_issued?: boolean | undefined;
|
|
177516
177490
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
177517
177491
|
issued_at?: (string | undefined) | null;
|
|
177518
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
177519
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
177492
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
177493
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
177520
177494
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
177521
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177495
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177522
177496
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
177523
177497
|
external_type_display_name?: string | undefined;
|
|
177524
177498
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -177645,10 +177619,10 @@ type Routes = {
|
|
|
177645
177619
|
is_issued?: boolean | undefined;
|
|
177646
177620
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
177647
177621
|
issued_at?: (string | undefined) | null;
|
|
177648
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
177649
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
177622
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
177623
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
177650
177624
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
177651
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177625
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
177652
177626
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
177653
177627
|
external_type_display_name?: string | undefined;
|
|
177654
177628
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -178475,10 +178449,10 @@ type Routes = {
|
|
|
178475
178449
|
is_issued?: boolean | undefined;
|
|
178476
178450
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
178477
178451
|
issued_at?: (string | undefined) | null;
|
|
178478
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
178479
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
178452
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
178453
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
178480
178454
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
178481
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178455
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178482
178456
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
178483
178457
|
external_type_display_name?: string | undefined;
|
|
178484
178458
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -178605,10 +178579,10 @@ type Routes = {
|
|
|
178605
178579
|
is_issued?: boolean | undefined;
|
|
178606
178580
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
178607
178581
|
issued_at?: (string | undefined) | null;
|
|
178608
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
178609
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
178582
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
178583
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
178610
178584
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
178611
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178585
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178612
178586
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
178613
178587
|
external_type_display_name?: string | undefined;
|
|
178614
178588
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -178792,10 +178766,10 @@ type Routes = {
|
|
|
178792
178766
|
is_issued?: boolean | undefined;
|
|
178793
178767
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
178794
178768
|
issued_at?: (string | undefined) | null;
|
|
178795
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
178796
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
178769
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
178770
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
178797
178771
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
178798
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178772
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178799
178773
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
178800
178774
|
external_type_display_name?: string | undefined;
|
|
178801
178775
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -178922,10 +178896,10 @@ type Routes = {
|
|
|
178922
178896
|
is_issued?: boolean | undefined;
|
|
178923
178897
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
178924
178898
|
issued_at?: (string | undefined) | null;
|
|
178925
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
178926
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
178899
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
178900
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
178927
178901
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
178928
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178902
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
178929
178903
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
178930
178904
|
external_type_display_name?: string | undefined;
|
|
178931
178905
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -179750,10 +179724,10 @@ type Routes = {
|
|
|
179750
179724
|
is_issued?: boolean | undefined;
|
|
179751
179725
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
179752
179726
|
issued_at?: (string | undefined) | null;
|
|
179753
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
179754
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
179727
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
179728
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
179755
179729
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
179756
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
179730
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
179757
179731
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
179758
179732
|
external_type_display_name?: string | undefined;
|
|
179759
179733
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -179880,10 +179854,10 @@ type Routes = {
|
|
|
179880
179854
|
is_issued?: boolean | undefined;
|
|
179881
179855
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
179882
179856
|
issued_at?: (string | undefined) | null;
|
|
179883
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
179884
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
179857
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
179858
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
179885
179859
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
179886
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
179860
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
179887
179861
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
179888
179862
|
external_type_display_name?: string | undefined;
|
|
179889
179863
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -180067,10 +180041,10 @@ type Routes = {
|
|
|
180067
180041
|
is_issued?: boolean | undefined;
|
|
180068
180042
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
180069
180043
|
issued_at?: (string | undefined) | null;
|
|
180070
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
180071
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
180044
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
180045
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
180072
180046
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
180073
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
180047
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
180074
180048
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
180075
180049
|
external_type_display_name?: string | undefined;
|
|
180076
180050
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -180197,10 +180171,10 @@ type Routes = {
|
|
|
180197
180171
|
is_issued?: boolean | undefined;
|
|
180198
180172
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
180199
180173
|
issued_at?: (string | undefined) | null;
|
|
180200
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
180201
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
180174
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
180175
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
180202
180176
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
180203
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
180177
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
180204
180178
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
180205
180179
|
external_type_display_name?: string | undefined;
|
|
180206
180180
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -181027,10 +181001,10 @@ type Routes = {
|
|
|
181027
181001
|
is_issued?: boolean | undefined;
|
|
181028
181002
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
181029
181003
|
issued_at?: (string | undefined) | null;
|
|
181030
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
181031
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
181004
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
181005
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
181032
181006
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
181033
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181007
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181034
181008
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
181035
181009
|
external_type_display_name?: string | undefined;
|
|
181036
181010
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -181157,10 +181131,10 @@ type Routes = {
|
|
|
181157
181131
|
is_issued?: boolean | undefined;
|
|
181158
181132
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
181159
181133
|
issued_at?: (string | undefined) | null;
|
|
181160
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
181161
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
181134
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
181135
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
181162
181136
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
181163
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181137
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181164
181138
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
181165
181139
|
external_type_display_name?: string | undefined;
|
|
181166
181140
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -181344,10 +181318,10 @@ type Routes = {
|
|
|
181344
181318
|
is_issued?: boolean | undefined;
|
|
181345
181319
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
181346
181320
|
issued_at?: (string | undefined) | null;
|
|
181347
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
181348
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
181321
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
181322
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
181349
181323
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
181350
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181324
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181351
181325
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
181352
181326
|
external_type_display_name?: string | undefined;
|
|
181353
181327
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -181474,10 +181448,10 @@ type Routes = {
|
|
|
181474
181448
|
is_issued?: boolean | undefined;
|
|
181475
181449
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
181476
181450
|
issued_at?: (string | undefined) | null;
|
|
181477
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
181478
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
181451
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
181452
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
181479
181453
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
181480
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181454
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
181481
181455
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
181482
181456
|
external_type_display_name?: string | undefined;
|
|
181483
181457
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -184975,10 +184949,10 @@ type Routes = {
|
|
|
184975
184949
|
is_issued?: boolean | undefined;
|
|
184976
184950
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
184977
184951
|
issued_at?: (string | undefined) | null;
|
|
184978
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
184979
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
184952
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
184953
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
184980
184954
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
184981
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
184955
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
184982
184956
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
184983
184957
|
external_type_display_name?: string | undefined;
|
|
184984
184958
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -185105,10 +185079,10 @@ type Routes = {
|
|
|
185105
185079
|
is_issued?: boolean | undefined;
|
|
185106
185080
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
185107
185081
|
issued_at?: (string | undefined) | null;
|
|
185108
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
185109
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
185082
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
185083
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
185110
185084
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
185111
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185085
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185112
185086
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
185113
185087
|
external_type_display_name?: string | undefined;
|
|
185114
185088
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -185292,10 +185266,10 @@ type Routes = {
|
|
|
185292
185266
|
is_issued?: boolean | undefined;
|
|
185293
185267
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
185294
185268
|
issued_at?: (string | undefined) | null;
|
|
185295
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
185296
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
185269
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
185270
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
185297
185271
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
185298
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185272
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185299
185273
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
185300
185274
|
external_type_display_name?: string | undefined;
|
|
185301
185275
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -185422,10 +185396,10 @@ type Routes = {
|
|
|
185422
185396
|
is_issued?: boolean | undefined;
|
|
185423
185397
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
185424
185398
|
issued_at?: (string | undefined) | null;
|
|
185425
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
185426
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
185399
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
185400
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
185427
185401
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
185428
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185402
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
185429
185403
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
185430
185404
|
external_type_display_name?: string | undefined;
|
|
185431
185405
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -186271,10 +186245,10 @@ type Routes = {
|
|
|
186271
186245
|
is_issued?: boolean | undefined;
|
|
186272
186246
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
186273
186247
|
issued_at?: (string | undefined) | null;
|
|
186274
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
186275
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
186248
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
186249
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
186276
186250
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
186277
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186251
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186278
186252
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
186279
186253
|
external_type_display_name?: string | undefined;
|
|
186280
186254
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -186401,10 +186375,10 @@ type Routes = {
|
|
|
186401
186375
|
is_issued?: boolean | undefined;
|
|
186402
186376
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
186403
186377
|
issued_at?: (string | undefined) | null;
|
|
186404
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
186405
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
186378
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
186379
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
186406
186380
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
186407
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186381
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186408
186382
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
186409
186383
|
external_type_display_name?: string | undefined;
|
|
186410
186384
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -186588,10 +186562,10 @@ type Routes = {
|
|
|
186588
186562
|
is_issued?: boolean | undefined;
|
|
186589
186563
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
186590
186564
|
issued_at?: (string | undefined) | null;
|
|
186591
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
186592
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
186565
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
186566
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
186593
186567
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
186594
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186568
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186595
186569
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
186596
186570
|
external_type_display_name?: string | undefined;
|
|
186597
186571
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -186718,10 +186692,10 @@ type Routes = {
|
|
|
186718
186692
|
is_issued?: boolean | undefined;
|
|
186719
186693
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
186720
186694
|
issued_at?: (string | undefined) | null;
|
|
186721
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
186722
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
186695
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
186696
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
186723
186697
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
186724
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186698
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
186725
186699
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
186726
186700
|
external_type_display_name?: string | undefined;
|
|
186727
186701
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -187623,10 +187597,10 @@ type Routes = {
|
|
|
187623
187597
|
is_issued?: boolean | undefined;
|
|
187624
187598
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
187625
187599
|
issued_at?: (string | undefined) | null;
|
|
187626
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
187627
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
187600
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
187601
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
187628
187602
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
187629
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187603
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187630
187604
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
187631
187605
|
external_type_display_name?: string | undefined;
|
|
187632
187606
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -187753,10 +187727,10 @@ type Routes = {
|
|
|
187753
187727
|
is_issued?: boolean | undefined;
|
|
187754
187728
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
187755
187729
|
issued_at?: (string | undefined) | null;
|
|
187756
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
187757
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
187730
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
187731
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
187758
187732
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
187759
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187733
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187760
187734
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
187761
187735
|
external_type_display_name?: string | undefined;
|
|
187762
187736
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -187940,10 +187914,10 @@ type Routes = {
|
|
|
187940
187914
|
is_issued?: boolean | undefined;
|
|
187941
187915
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
187942
187916
|
issued_at?: (string | undefined) | null;
|
|
187943
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
187944
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
187917
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
187918
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
187945
187919
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
187946
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187920
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
187947
187921
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
187948
187922
|
external_type_display_name?: string | undefined;
|
|
187949
187923
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -188070,10 +188044,10 @@ type Routes = {
|
|
|
188070
188044
|
is_issued?: boolean | undefined;
|
|
188071
188045
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
188072
188046
|
issued_at?: (string | undefined) | null;
|
|
188073
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
188074
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
188047
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
188048
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
188075
188049
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
188076
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
188050
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
188077
188051
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
188078
188052
|
external_type_display_name?: string | undefined;
|
|
188079
188053
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -189866,10 +189840,10 @@ type Routes = {
|
|
|
189866
189840
|
is_issued?: boolean | undefined;
|
|
189867
189841
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
189868
189842
|
issued_at?: (string | undefined) | null;
|
|
189869
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
189870
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
189843
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
189844
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
189871
189845
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
189872
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
189846
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
189873
189847
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
189874
189848
|
external_type_display_name?: string | undefined;
|
|
189875
189849
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -189996,10 +189970,10 @@ type Routes = {
|
|
|
189996
189970
|
is_issued?: boolean | undefined;
|
|
189997
189971
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
189998
189972
|
issued_at?: (string | undefined) | null;
|
|
189999
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
190000
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
189973
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
189974
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
190001
189975
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
190002
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
189976
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
190003
189977
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
190004
189978
|
external_type_display_name?: string | undefined;
|
|
190005
189979
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -190183,10 +190157,10 @@ type Routes = {
|
|
|
190183
190157
|
is_issued?: boolean | undefined;
|
|
190184
190158
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
190185
190159
|
issued_at?: (string | undefined) | null;
|
|
190186
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
190187
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
190160
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
190161
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
190188
190162
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
190189
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
190163
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
190190
190164
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
190191
190165
|
external_type_display_name?: string | undefined;
|
|
190192
190166
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -190313,10 +190287,10 @@ type Routes = {
|
|
|
190313
190287
|
is_issued?: boolean | undefined;
|
|
190314
190288
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
190315
190289
|
issued_at?: (string | undefined) | null;
|
|
190316
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
190317
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
190290
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
190291
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
190318
190292
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
190319
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
190293
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
190320
190294
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
190321
190295
|
external_type_display_name?: string | undefined;
|
|
190322
190296
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -191034,7 +191008,10 @@ type Routes = {
|
|
|
191034
191008
|
method: 'GET' | 'POST';
|
|
191035
191009
|
queryParams: {};
|
|
191036
191010
|
jsonBody: {};
|
|
191037
|
-
commonParams: {
|
|
191011
|
+
commonParams: {
|
|
191012
|
+
/** Key of the customer to get automation config for. */
|
|
191013
|
+
customer_key?: string | undefined;
|
|
191014
|
+
};
|
|
191038
191015
|
formData: {};
|
|
191039
191016
|
jsonResponse: {
|
|
191040
191017
|
access_rules?: {
|
|
@@ -191116,6 +191093,8 @@ type Routes = {
|
|
|
191116
191093
|
method: 'PATCH' | 'POST';
|
|
191117
191094
|
queryParams: {};
|
|
191118
191095
|
jsonBody: {
|
|
191096
|
+
/** Key of the customer to update automation config for. */
|
|
191097
|
+
customer_key?: string | undefined;
|
|
191119
191098
|
/** Access automation rules configuration. */
|
|
191120
191099
|
access_rules?: {
|
|
191121
191100
|
reservation_created?: {
|
|
@@ -191408,10 +191387,7 @@ type Routes = {
|
|
|
191408
191387
|
method: 'GET' | 'POST';
|
|
191409
191388
|
queryParams: {};
|
|
191410
191389
|
jsonBody: {};
|
|
191411
|
-
commonParams: {
|
|
191412
|
-
/** Key of the customer. */
|
|
191413
|
-
customer_key: string;
|
|
191414
|
-
};
|
|
191390
|
+
commonParams: {};
|
|
191415
191391
|
formData: {};
|
|
191416
191392
|
jsonResponse: {
|
|
191417
191393
|
automation: {
|
|
@@ -195356,10 +195332,10 @@ type Routes = {
|
|
|
195356
195332
|
is_issued?: boolean | undefined;
|
|
195357
195333
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
195358
195334
|
issued_at?: (string | undefined) | null;
|
|
195359
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
195360
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
195335
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
195336
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
195361
195337
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
195362
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
195338
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
195363
195339
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
195364
195340
|
external_type_display_name?: string | undefined;
|
|
195365
195341
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -195523,10 +195499,10 @@ type Routes = {
|
|
|
195523
195499
|
is_issued?: boolean | undefined;
|
|
195524
195500
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
195525
195501
|
issued_at?: (string | undefined) | null;
|
|
195526
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
195527
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
195502
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
195503
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
195528
195504
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
195529
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
195505
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
195530
195506
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
195531
195507
|
external_type_display_name?: string | undefined;
|
|
195532
195508
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -198133,10 +198109,10 @@ type Routes = {
|
|
|
198133
198109
|
is_issued?: boolean | undefined;
|
|
198134
198110
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
198135
198111
|
issued_at?: (string | undefined) | null;
|
|
198136
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
198137
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
198112
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
198113
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
198138
198114
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
198139
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198115
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198140
198116
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
198141
198117
|
external_type_display_name?: string | undefined;
|
|
198142
198118
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -198263,10 +198239,10 @@ type Routes = {
|
|
|
198263
198239
|
is_issued?: boolean | undefined;
|
|
198264
198240
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
198265
198241
|
issued_at?: (string | undefined) | null;
|
|
198266
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
198267
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
198242
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
198243
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
198268
198244
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
198269
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198245
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198270
198246
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
198271
198247
|
external_type_display_name?: string | undefined;
|
|
198272
198248
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -198450,10 +198426,10 @@ type Routes = {
|
|
|
198450
198426
|
is_issued?: boolean | undefined;
|
|
198451
198427
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
198452
198428
|
issued_at?: (string | undefined) | null;
|
|
198453
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
198454
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
198429
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
198430
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
198455
198431
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
198456
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198432
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198457
198433
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
198458
198434
|
external_type_display_name?: string | undefined;
|
|
198459
198435
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -198580,10 +198556,10 @@ type Routes = {
|
|
|
198580
198556
|
is_issued?: boolean | undefined;
|
|
198581
198557
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
198582
198558
|
issued_at?: (string | undefined) | null;
|
|
198583
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
198584
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
198559
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
198560
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
198585
198561
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
198586
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198562
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
198587
198563
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
198588
198564
|
external_type_display_name?: string | undefined;
|
|
198589
198565
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -199414,10 +199390,10 @@ type Routes = {
|
|
|
199414
199390
|
is_issued?: boolean | undefined;
|
|
199415
199391
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
199416
199392
|
issued_at?: (string | undefined) | null;
|
|
199417
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
199418
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
199393
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
199394
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
199419
199395
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
199420
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199396
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199421
199397
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
199422
199398
|
external_type_display_name?: string | undefined;
|
|
199423
199399
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -199544,10 +199520,10 @@ type Routes = {
|
|
|
199544
199520
|
is_issued?: boolean | undefined;
|
|
199545
199521
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
199546
199522
|
issued_at?: (string | undefined) | null;
|
|
199547
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
199548
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
199523
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
199524
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
199549
199525
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
199550
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199526
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199551
199527
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
199552
199528
|
external_type_display_name?: string | undefined;
|
|
199553
199529
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -199731,10 +199707,10 @@ type Routes = {
|
|
|
199731
199707
|
is_issued?: boolean | undefined;
|
|
199732
199708
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
199733
199709
|
issued_at?: (string | undefined) | null;
|
|
199734
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
199735
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
199710
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
199711
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
199736
199712
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
199737
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199713
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199738
199714
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
199739
199715
|
external_type_display_name?: string | undefined;
|
|
199740
199716
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -199861,10 +199837,10 @@ type Routes = {
|
|
|
199861
199837
|
is_issued?: boolean | undefined;
|
|
199862
199838
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
199863
199839
|
issued_at?: (string | undefined) | null;
|
|
199864
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
199865
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
199840
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
199841
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
199866
199842
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
199867
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199843
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
199868
199844
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
199869
199845
|
external_type_display_name?: string | undefined;
|
|
199870
199846
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -200801,10 +200777,10 @@ type Routes = {
|
|
|
200801
200777
|
is_issued?: boolean | undefined;
|
|
200802
200778
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
200803
200779
|
issued_at?: (string | undefined) | null;
|
|
200804
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
200805
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
200780
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
200781
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
200806
200782
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
200807
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
200783
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
200808
200784
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
200809
200785
|
external_type_display_name?: string | undefined;
|
|
200810
200786
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -200931,10 +200907,10 @@ type Routes = {
|
|
|
200931
200907
|
is_issued?: boolean | undefined;
|
|
200932
200908
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
200933
200909
|
issued_at?: (string | undefined) | null;
|
|
200934
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
200935
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
200910
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
200911
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
200936
200912
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
200937
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
200913
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
200938
200914
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
200939
200915
|
external_type_display_name?: string | undefined;
|
|
200940
200916
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -201118,10 +201094,10 @@ type Routes = {
|
|
|
201118
201094
|
is_issued?: boolean | undefined;
|
|
201119
201095
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
201120
201096
|
issued_at?: (string | undefined) | null;
|
|
201121
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
201122
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
201097
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
201098
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
201123
201099
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
201124
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
201100
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
201125
201101
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
201126
201102
|
external_type_display_name?: string | undefined;
|
|
201127
201103
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -201248,10 +201224,10 @@ type Routes = {
|
|
|
201248
201224
|
is_issued?: boolean | undefined;
|
|
201249
201225
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
201250
201226
|
issued_at?: (string | undefined) | null;
|
|
201251
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
201252
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
201227
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
201228
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
201253
201229
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
201254
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
201230
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
201255
201231
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
201256
201232
|
external_type_display_name?: string | undefined;
|
|
201257
201233
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -203419,10 +203395,10 @@ type Routes = {
|
|
|
203419
203395
|
is_issued?: boolean | undefined;
|
|
203420
203396
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
203421
203397
|
issued_at?: (string | undefined) | null;
|
|
203422
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
203423
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
203398
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
203399
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
203424
203400
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
203425
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203401
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203426
203402
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
203427
203403
|
external_type_display_name?: string | undefined;
|
|
203428
203404
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -203549,10 +203525,10 @@ type Routes = {
|
|
|
203549
203525
|
is_issued?: boolean | undefined;
|
|
203550
203526
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
203551
203527
|
issued_at?: (string | undefined) | null;
|
|
203552
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
203553
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
203528
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
203529
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
203554
203530
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
203555
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203531
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203556
203532
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
203557
203533
|
external_type_display_name?: string | undefined;
|
|
203558
203534
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -203736,10 +203712,10 @@ type Routes = {
|
|
|
203736
203712
|
is_issued?: boolean | undefined;
|
|
203737
203713
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
203738
203714
|
issued_at?: (string | undefined) | null;
|
|
203739
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
203740
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
203715
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
203716
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
203741
203717
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
203742
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203718
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203743
203719
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
203744
203720
|
external_type_display_name?: string | undefined;
|
|
203745
203721
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -203866,10 +203842,10 @@ type Routes = {
|
|
|
203866
203842
|
is_issued?: boolean | undefined;
|
|
203867
203843
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
203868
203844
|
issued_at?: (string | undefined) | null;
|
|
203869
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
203870
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
203845
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
203846
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
203871
203847
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
203872
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203848
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
203873
203849
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
203874
203850
|
external_type_display_name?: string | undefined;
|
|
203875
203851
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -204704,10 +204680,10 @@ type Routes = {
|
|
|
204704
204680
|
is_issued?: boolean | undefined;
|
|
204705
204681
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
204706
204682
|
issued_at?: (string | undefined) | null;
|
|
204707
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
204708
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
204683
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
204684
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
204709
204685
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
204710
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
204686
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
204711
204687
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
204712
204688
|
external_type_display_name?: string | undefined;
|
|
204713
204689
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -204834,10 +204810,10 @@ type Routes = {
|
|
|
204834
204810
|
is_issued?: boolean | undefined;
|
|
204835
204811
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
204836
204812
|
issued_at?: (string | undefined) | null;
|
|
204837
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
204838
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
204813
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
204814
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
204839
204815
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
204840
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
204816
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
204841
204817
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
204842
204818
|
external_type_display_name?: string | undefined;
|
|
204843
204819
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -205021,10 +204997,10 @@ type Routes = {
|
|
|
205021
204997
|
is_issued?: boolean | undefined;
|
|
205022
204998
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
205023
204999
|
issued_at?: (string | undefined) | null;
|
|
205024
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
205025
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
205000
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
205001
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
205026
205002
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
205027
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
205003
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
205028
205004
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
205029
205005
|
external_type_display_name?: string | undefined;
|
|
205030
205006
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -205151,10 +205127,10 @@ type Routes = {
|
|
|
205151
205127
|
is_issued?: boolean | undefined;
|
|
205152
205128
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
205153
205129
|
issued_at?: (string | undefined) | null;
|
|
205154
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
205155
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
205130
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
205131
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
205156
205132
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
205157
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
205133
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
205158
205134
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
205159
205135
|
external_type_display_name?: string | undefined;
|
|
205160
205136
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -208642,10 +208618,10 @@ type Routes = {
|
|
|
208642
208618
|
is_issued?: boolean | undefined;
|
|
208643
208619
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
208644
208620
|
issued_at?: (string | undefined) | null;
|
|
208645
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
208646
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
208621
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
208622
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
208647
208623
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
208648
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208624
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208649
208625
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
208650
208626
|
external_type_display_name?: string | undefined;
|
|
208651
208627
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -208772,10 +208748,10 @@ type Routes = {
|
|
|
208772
208748
|
is_issued?: boolean | undefined;
|
|
208773
208749
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
208774
208750
|
issued_at?: (string | undefined) | null;
|
|
208775
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
208776
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
208751
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
208752
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
208777
208753
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
208778
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208754
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208779
208755
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
208780
208756
|
external_type_display_name?: string | undefined;
|
|
208781
208757
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -208959,10 +208935,10 @@ type Routes = {
|
|
|
208959
208935
|
is_issued?: boolean | undefined;
|
|
208960
208936
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
208961
208937
|
issued_at?: (string | undefined) | null;
|
|
208962
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
208963
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
208938
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
208939
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
208964
208940
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
208965
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208941
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
208966
208942
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
208967
208943
|
external_type_display_name?: string | undefined;
|
|
208968
208944
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -209089,10 +209065,10 @@ type Routes = {
|
|
|
209089
209065
|
is_issued?: boolean | undefined;
|
|
209090
209066
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
209091
209067
|
issued_at?: (string | undefined) | null;
|
|
209092
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
209093
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
209068
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
209069
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
209094
209070
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
209095
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
209071
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
209096
209072
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
209097
209073
|
external_type_display_name?: string | undefined;
|
|
209098
209074
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -210122,10 +210098,10 @@ type Routes = {
|
|
|
210122
210098
|
is_issued?: boolean | undefined;
|
|
210123
210099
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
210124
210100
|
issued_at?: (string | undefined) | null;
|
|
210125
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
210126
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
210101
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
210102
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
210127
210103
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
210128
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210104
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210129
210105
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
210130
210106
|
external_type_display_name?: string | undefined;
|
|
210131
210107
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -210252,10 +210228,10 @@ type Routes = {
|
|
|
210252
210228
|
is_issued?: boolean | undefined;
|
|
210253
210229
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
210254
210230
|
issued_at?: (string | undefined) | null;
|
|
210255
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
210256
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
210231
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
210232
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
210257
210233
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
210258
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210234
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210259
210235
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
210260
210236
|
external_type_display_name?: string | undefined;
|
|
210261
210237
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -210439,10 +210415,10 @@ type Routes = {
|
|
|
210439
210415
|
is_issued?: boolean | undefined;
|
|
210440
210416
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
210441
210417
|
issued_at?: (string | undefined) | null;
|
|
210442
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
210443
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
210418
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
210419
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
210444
210420
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
210445
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210421
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210446
210422
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
210447
210423
|
external_type_display_name?: string | undefined;
|
|
210448
210424
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -210569,10 +210545,10 @@ type Routes = {
|
|
|
210569
210545
|
is_issued?: boolean | undefined;
|
|
210570
210546
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
210571
210547
|
issued_at?: (string | undefined) | null;
|
|
210572
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
210573
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
210548
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
210549
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
210574
210550
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
210575
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210551
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
210576
210552
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
210577
210553
|
external_type_display_name?: string | undefined;
|
|
210578
210554
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -211430,10 +211406,10 @@ type Routes = {
|
|
|
211430
211406
|
is_issued?: boolean | undefined;
|
|
211431
211407
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
211432
211408
|
issued_at?: (string | undefined) | null;
|
|
211433
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
211434
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
211409
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
211410
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
211435
211411
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
211436
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211412
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211437
211413
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
211438
211414
|
external_type_display_name?: string | undefined;
|
|
211439
211415
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -211560,10 +211536,10 @@ type Routes = {
|
|
|
211560
211536
|
is_issued?: boolean | undefined;
|
|
211561
211537
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
211562
211538
|
issued_at?: (string | undefined) | null;
|
|
211563
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
211564
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
211539
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
211540
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
211565
211541
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
211566
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211542
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211567
211543
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
211568
211544
|
external_type_display_name?: string | undefined;
|
|
211569
211545
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -211747,10 +211723,10 @@ type Routes = {
|
|
|
211747
211723
|
is_issued?: boolean | undefined;
|
|
211748
211724
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
211749
211725
|
issued_at?: (string | undefined) | null;
|
|
211750
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
211751
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
211726
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
211727
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
211752
211728
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
211753
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211729
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211754
211730
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
211755
211731
|
external_type_display_name?: string | undefined;
|
|
211756
211732
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -211877,10 +211853,10 @@ type Routes = {
|
|
|
211877
211853
|
is_issued?: boolean | undefined;
|
|
211878
211854
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
211879
211855
|
issued_at?: (string | undefined) | null;
|
|
211880
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
211881
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
211856
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
211857
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
211882
211858
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
211883
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211859
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
211884
211860
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
211885
211861
|
external_type_display_name?: string | undefined;
|
|
211886
211862
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -212850,10 +212826,10 @@ type Routes = {
|
|
|
212850
212826
|
is_issued?: boolean | undefined;
|
|
212851
212827
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
212852
212828
|
issued_at?: (string | undefined) | null;
|
|
212853
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
212854
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
212829
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
212830
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
212855
212831
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
212856
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
212832
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
212857
212833
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
212858
212834
|
external_type_display_name?: string | undefined;
|
|
212859
212835
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -212980,10 +212956,10 @@ type Routes = {
|
|
|
212980
212956
|
is_issued?: boolean | undefined;
|
|
212981
212957
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
212982
212958
|
issued_at?: (string | undefined) | null;
|
|
212983
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
212984
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
212959
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
212960
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
212985
212961
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
212986
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
212962
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
212987
212963
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
212988
212964
|
external_type_display_name?: string | undefined;
|
|
212989
212965
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -213167,10 +213143,10 @@ type Routes = {
|
|
|
213167
213143
|
is_issued?: boolean | undefined;
|
|
213168
213144
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
213169
213145
|
issued_at?: (string | undefined) | null;
|
|
213170
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
213171
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
213146
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
213147
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
213172
213148
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
213173
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
213149
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
213174
213150
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
213175
213151
|
external_type_display_name?: string | undefined;
|
|
213176
213152
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -213297,10 +213273,10 @@ type Routes = {
|
|
|
213297
213273
|
is_issued?: boolean | undefined;
|
|
213298
213274
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
213299
213275
|
issued_at?: (string | undefined) | null;
|
|
213300
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
213301
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
213276
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
213277
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
213302
213278
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
213303
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
213279
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
213304
213280
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
213305
213281
|
external_type_display_name?: string | undefined;
|
|
213306
213282
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -220224,10 +220200,10 @@ type Routes = {
|
|
|
220224
220200
|
is_issued?: boolean | undefined;
|
|
220225
220201
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
220226
220202
|
issued_at?: (string | undefined) | null;
|
|
220227
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
220228
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
220203
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
220204
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
220229
220205
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
220230
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220206
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220231
220207
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
220232
220208
|
external_type_display_name?: string | undefined;
|
|
220233
220209
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -220354,10 +220330,10 @@ type Routes = {
|
|
|
220354
220330
|
is_issued?: boolean | undefined;
|
|
220355
220331
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
220356
220332
|
issued_at?: (string | undefined) | null;
|
|
220357
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
220358
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
220333
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
220334
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
220359
220335
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
220360
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220336
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220361
220337
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
220362
220338
|
external_type_display_name?: string | undefined;
|
|
220363
220339
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -220541,10 +220517,10 @@ type Routes = {
|
|
|
220541
220517
|
is_issued?: boolean | undefined;
|
|
220542
220518
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
220543
220519
|
issued_at?: (string | undefined) | null;
|
|
220544
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
220545
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
220520
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
220521
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
220546
220522
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
220547
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220523
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220548
220524
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
220549
220525
|
external_type_display_name?: string | undefined;
|
|
220550
220526
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -220671,10 +220647,10 @@ type Routes = {
|
|
|
220671
220647
|
is_issued?: boolean | undefined;
|
|
220672
220648
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
220673
220649
|
issued_at?: (string | undefined) | null;
|
|
220674
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
220675
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
220650
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
220651
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
220676
220652
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
220677
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220653
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
220678
220654
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
220679
220655
|
external_type_display_name?: string | undefined;
|
|
220680
220656
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -225441,10 +225417,10 @@ type Routes = {
|
|
|
225441
225417
|
is_issued?: boolean | undefined;
|
|
225442
225418
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
225443
225419
|
issued_at?: (string | undefined) | null;
|
|
225444
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
225445
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
225420
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
225421
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
225446
225422
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
225447
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
225423
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
225448
225424
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
225449
225425
|
external_type_display_name?: string | undefined;
|
|
225450
225426
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -225572,10 +225548,10 @@ type Routes = {
|
|
|
225572
225548
|
is_issued?: boolean | undefined;
|
|
225573
225549
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
225574
225550
|
issued_at?: (string | undefined) | null;
|
|
225575
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
225576
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
225551
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
225552
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
225577
225553
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
225578
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
225554
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
225579
225555
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
225580
225556
|
external_type_display_name?: string | undefined;
|
|
225581
225557
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -227006,10 +226982,10 @@ type Routes = {
|
|
|
227006
226982
|
is_issued?: boolean | undefined;
|
|
227007
226983
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
227008
226984
|
issued_at?: (string | undefined) | null;
|
|
227009
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
227010
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
226985
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
226986
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
227011
226987
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
227012
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
226988
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227013
226989
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
227014
226990
|
external_type_display_name?: string | undefined;
|
|
227015
226991
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -227136,10 +227112,10 @@ type Routes = {
|
|
|
227136
227112
|
is_issued?: boolean | undefined;
|
|
227137
227113
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
227138
227114
|
issued_at?: (string | undefined) | null;
|
|
227139
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
227140
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
227115
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
227116
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
227141
227117
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
227142
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227118
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227143
227119
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
227144
227120
|
external_type_display_name?: string | undefined;
|
|
227145
227121
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -227323,10 +227299,10 @@ type Routes = {
|
|
|
227323
227299
|
is_issued?: boolean | undefined;
|
|
227324
227300
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
227325
227301
|
issued_at?: (string | undefined) | null;
|
|
227326
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
227327
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
227302
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
227303
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
227328
227304
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
227329
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227305
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227330
227306
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
227331
227307
|
external_type_display_name?: string | undefined;
|
|
227332
227308
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -227453,10 +227429,10 @@ type Routes = {
|
|
|
227453
227429
|
is_issued?: boolean | undefined;
|
|
227454
227430
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card. */
|
|
227455
227431
|
issued_at?: (string | undefined) | null;
|
|
227456
|
-
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
227457
|
-
access_method: 'code' | 'card' | 'mobile_key';
|
|
227432
|
+
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
227433
|
+
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
227458
227434
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
227459
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227435
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'brivo_digital_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access' | 'dormakaba_ambiance_credential' | 'hotek_card') | undefined;
|
|
227460
227436
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
227461
227437
|
external_type_display_name?: string | undefined;
|
|
227462
227438
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|