@seamapi/types 1.835.0 → 1.837.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 +52 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +337 -232
- package/dist/index.cjs +52 -13
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/models/batch.d.ts +81 -52
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +58 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +11 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +30 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +186 -144
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +1 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +34 -0
- package/src/lib/seam/connect/route-types.ts +192 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5707,7 +5707,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5707
5707
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
5708
5708
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5709
5709
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
5710
|
-
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", "salto_ks_tag"]>>;
|
|
5710
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
5711
5711
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
5712
5712
|
created_at: z.ZodString;
|
|
5713
5713
|
workspace_id: z.ZodString;
|
|
@@ -5921,7 +5921,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5921
5921
|
issued_at?: string | null | undefined;
|
|
5922
5922
|
is_issued?: boolean | undefined;
|
|
5923
5923
|
acs_user_id?: string | undefined;
|
|
5924
|
-
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" | "salto_ks_tag" | undefined;
|
|
5924
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
5925
5925
|
external_type_display_name?: string | undefined;
|
|
5926
5926
|
acs_credential_pool_id?: string | undefined;
|
|
5927
5927
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -5993,7 +5993,7 @@ declare const acs_credential: z.ZodObject<{
|
|
|
5993
5993
|
issued_at?: string | null | undefined;
|
|
5994
5994
|
is_issued?: boolean | undefined;
|
|
5995
5995
|
acs_user_id?: string | undefined;
|
|
5996
|
-
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" | "salto_ks_tag" | undefined;
|
|
5996
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
5997
5997
|
external_type_display_name?: string | undefined;
|
|
5998
5998
|
acs_credential_pool_id?: string | undefined;
|
|
5999
5999
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -6017,7 +6017,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
6017
6017
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
6018
6018
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6019
6019
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
6020
|
-
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", "salto_ks_tag"]>>;
|
|
6020
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
6021
6021
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
6022
6022
|
created_at: z.ZodString;
|
|
6023
6023
|
workspace_id: z.ZodString;
|
|
@@ -6231,7 +6231,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
6231
6231
|
issued_at?: string | null | undefined;
|
|
6232
6232
|
is_issued?: boolean | undefined;
|
|
6233
6233
|
acs_user_id?: string | undefined;
|
|
6234
|
-
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" | "salto_ks_tag" | undefined;
|
|
6234
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
6235
6235
|
external_type_display_name?: string | undefined;
|
|
6236
6236
|
acs_credential_pool_id?: string | undefined;
|
|
6237
6237
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -6303,7 +6303,7 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
6303
6303
|
issued_at?: string | null | undefined;
|
|
6304
6304
|
is_issued?: boolean | undefined;
|
|
6305
6305
|
acs_user_id?: string | undefined;
|
|
6306
|
-
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" | "salto_ks_tag" | undefined;
|
|
6306
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
6307
6307
|
external_type_display_name?: string | undefined;
|
|
6308
6308
|
acs_credential_pool_id?: string | undefined;
|
|
6309
6309
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7028,7 +7028,7 @@ declare const acs_user: z.ZodObject<{
|
|
|
7028
7028
|
workspace_id: z.ZodString;
|
|
7029
7029
|
created_at: z.ZodString;
|
|
7030
7030
|
display_name: z.ZodString;
|
|
7031
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
|
|
7031
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
|
|
7032
7032
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7033
7033
|
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
7034
7034
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -7563,7 +7563,7 @@ declare const acs_user: z.ZodObject<{
|
|
|
7563
7563
|
acs_access_group_id: string;
|
|
7564
7564
|
})[] | undefined;
|
|
7565
7565
|
user_identity_id?: string | undefined;
|
|
7566
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
7566
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
7567
7567
|
external_type_display_name?: string | undefined;
|
|
7568
7568
|
access_schedule?: {
|
|
7569
7569
|
starts_at: string;
|
|
@@ -7700,7 +7700,7 @@ declare const acs_user: z.ZodObject<{
|
|
|
7700
7700
|
acs_access_group_id: string;
|
|
7701
7701
|
})[] | undefined;
|
|
7702
7702
|
user_identity_id?: string | undefined;
|
|
7703
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
7703
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
7704
7704
|
external_type_display_name?: string | undefined;
|
|
7705
7705
|
access_schedule?: {
|
|
7706
7706
|
starts_at: string;
|
|
@@ -7726,7 +7726,7 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
7726
7726
|
workspace_id: z.ZodString;
|
|
7727
7727
|
created_at: z.ZodString;
|
|
7728
7728
|
display_name: z.ZodString;
|
|
7729
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
|
|
7729
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
|
|
7730
7730
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7731
7731
|
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
7732
7732
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -8261,7 +8261,7 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
8261
8261
|
acs_access_group_id: string;
|
|
8262
8262
|
})[] | undefined;
|
|
8263
8263
|
user_identity_id?: string | undefined;
|
|
8264
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
8264
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
8265
8265
|
external_type_display_name?: string | undefined;
|
|
8266
8266
|
access_schedule?: {
|
|
8267
8267
|
starts_at: string;
|
|
@@ -8398,7 +8398,7 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
8398
8398
|
acs_access_group_id: string;
|
|
8399
8399
|
})[] | undefined;
|
|
8400
8400
|
user_identity_id?: string | undefined;
|
|
8401
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
8401
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
8402
8402
|
external_type_display_name?: string | undefined;
|
|
8403
8403
|
access_schedule?: {
|
|
8404
8404
|
starts_at: string;
|
|
@@ -8719,7 +8719,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8719
8719
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8720
8720
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8721
8721
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8722
|
-
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", "salto_ks_tag"]>>;
|
|
8722
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
8723
8723
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8724
8724
|
created_at: z.ZodString;
|
|
8725
8725
|
workspace_id: z.ZodString;
|
|
@@ -8933,7 +8933,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8933
8933
|
issued_at?: string | null | undefined;
|
|
8934
8934
|
is_issued?: boolean | undefined;
|
|
8935
8935
|
acs_user_id?: string | undefined;
|
|
8936
|
-
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" | "salto_ks_tag" | undefined;
|
|
8936
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
8937
8937
|
external_type_display_name?: string | undefined;
|
|
8938
8938
|
acs_credential_pool_id?: string | undefined;
|
|
8939
8939
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9005,7 +9005,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9005
9005
|
issued_at?: string | null | undefined;
|
|
9006
9006
|
is_issued?: boolean | undefined;
|
|
9007
9007
|
acs_user_id?: string | undefined;
|
|
9008
|
-
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" | "salto_ks_tag" | undefined;
|
|
9008
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9009
9009
|
external_type_display_name?: string | undefined;
|
|
9010
9010
|
acs_credential_pool_id?: string | undefined;
|
|
9011
9011
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9028,7 +9028,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9028
9028
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9029
9029
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9030
9030
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9031
|
-
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", "salto_ks_tag"]>>;
|
|
9031
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
9032
9032
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9033
9033
|
created_at: z.ZodString;
|
|
9034
9034
|
workspace_id: z.ZodString;
|
|
@@ -9242,7 +9242,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9242
9242
|
issued_at?: string | null | undefined;
|
|
9243
9243
|
is_issued?: boolean | undefined;
|
|
9244
9244
|
acs_user_id?: string | undefined;
|
|
9245
|
-
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" | "salto_ks_tag" | undefined;
|
|
9245
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9246
9246
|
external_type_display_name?: string | undefined;
|
|
9247
9247
|
acs_credential_pool_id?: string | undefined;
|
|
9248
9248
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9314,7 +9314,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9314
9314
|
issued_at?: string | null | undefined;
|
|
9315
9315
|
is_issued?: boolean | undefined;
|
|
9316
9316
|
acs_user_id?: string | undefined;
|
|
9317
|
-
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" | "salto_ks_tag" | undefined;
|
|
9317
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9318
9318
|
external_type_display_name?: string | undefined;
|
|
9319
9319
|
acs_credential_pool_id?: string | undefined;
|
|
9320
9320
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9423,7 +9423,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9423
9423
|
issued_at?: string | null | undefined;
|
|
9424
9424
|
is_issued?: boolean | undefined;
|
|
9425
9425
|
acs_user_id?: string | undefined;
|
|
9426
|
-
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" | "salto_ks_tag" | undefined;
|
|
9426
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9427
9427
|
external_type_display_name?: string | undefined;
|
|
9428
9428
|
acs_credential_pool_id?: string | undefined;
|
|
9429
9429
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9495,7 +9495,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9495
9495
|
issued_at?: string | null | undefined;
|
|
9496
9496
|
is_issued?: boolean | undefined;
|
|
9497
9497
|
acs_user_id?: string | undefined;
|
|
9498
|
-
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" | "salto_ks_tag" | undefined;
|
|
9498
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9499
9499
|
external_type_display_name?: string | undefined;
|
|
9500
9500
|
acs_credential_pool_id?: string | undefined;
|
|
9501
9501
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9594,7 +9594,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9594
9594
|
issued_at?: string | null | undefined;
|
|
9595
9595
|
is_issued?: boolean | undefined;
|
|
9596
9596
|
acs_user_id?: string | undefined;
|
|
9597
|
-
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" | "salto_ks_tag" | undefined;
|
|
9597
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9598
9598
|
external_type_display_name?: string | undefined;
|
|
9599
9599
|
acs_credential_pool_id?: string | undefined;
|
|
9600
9600
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9666,7 +9666,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9666
9666
|
issued_at?: string | null | undefined;
|
|
9667
9667
|
is_issued?: boolean | undefined;
|
|
9668
9668
|
acs_user_id?: string | undefined;
|
|
9669
|
-
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" | "salto_ks_tag" | undefined;
|
|
9669
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9670
9670
|
external_type_display_name?: string | undefined;
|
|
9671
9671
|
acs_credential_pool_id?: string | undefined;
|
|
9672
9672
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9770,7 +9770,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9770
9770
|
issued_at?: string | null | undefined;
|
|
9771
9771
|
is_issued?: boolean | undefined;
|
|
9772
9772
|
acs_user_id?: string | undefined;
|
|
9773
|
-
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" | "salto_ks_tag" | undefined;
|
|
9773
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9774
9774
|
external_type_display_name?: string | undefined;
|
|
9775
9775
|
acs_credential_pool_id?: string | undefined;
|
|
9776
9776
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9842,7 +9842,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9842
9842
|
issued_at?: string | null | undefined;
|
|
9843
9843
|
is_issued?: boolean | undefined;
|
|
9844
9844
|
acs_user_id?: string | undefined;
|
|
9845
|
-
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" | "salto_ks_tag" | undefined;
|
|
9845
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9846
9846
|
external_type_display_name?: string | undefined;
|
|
9847
9847
|
acs_credential_pool_id?: string | undefined;
|
|
9848
9848
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9947,7 +9947,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9947
9947
|
issued_at?: string | null | undefined;
|
|
9948
9948
|
is_issued?: boolean | undefined;
|
|
9949
9949
|
acs_user_id?: string | undefined;
|
|
9950
|
-
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" | "salto_ks_tag" | undefined;
|
|
9950
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
9951
9951
|
external_type_display_name?: string | undefined;
|
|
9952
9952
|
acs_credential_pool_id?: string | undefined;
|
|
9953
9953
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10019,7 +10019,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10019
10019
|
issued_at?: string | null | undefined;
|
|
10020
10020
|
is_issued?: boolean | undefined;
|
|
10021
10021
|
acs_user_id?: string | undefined;
|
|
10022
|
-
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" | "salto_ks_tag" | undefined;
|
|
10022
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10023
10023
|
external_type_display_name?: string | undefined;
|
|
10024
10024
|
acs_credential_pool_id?: string | undefined;
|
|
10025
10025
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10182,7 +10182,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10182
10182
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
10183
10183
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10184
10184
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
10185
|
-
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", "salto_ks_tag"]>>;
|
|
10185
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
10186
10186
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
10187
10187
|
created_at: z.ZodString;
|
|
10188
10188
|
workspace_id: z.ZodString;
|
|
@@ -10396,7 +10396,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10396
10396
|
issued_at?: string | null | undefined;
|
|
10397
10397
|
is_issued?: boolean | undefined;
|
|
10398
10398
|
acs_user_id?: string | undefined;
|
|
10399
|
-
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" | "salto_ks_tag" | undefined;
|
|
10399
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10400
10400
|
external_type_display_name?: string | undefined;
|
|
10401
10401
|
acs_credential_pool_id?: string | undefined;
|
|
10402
10402
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10468,7 +10468,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10468
10468
|
issued_at?: string | null | undefined;
|
|
10469
10469
|
is_issued?: boolean | undefined;
|
|
10470
10470
|
acs_user_id?: string | undefined;
|
|
10471
|
-
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" | "salto_ks_tag" | undefined;
|
|
10471
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10472
10472
|
external_type_display_name?: string | undefined;
|
|
10473
10473
|
acs_credential_pool_id?: string | undefined;
|
|
10474
10474
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10491,7 +10491,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10491
10491
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
10492
10492
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10493
10493
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
10494
|
-
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", "salto_ks_tag"]>>;
|
|
10494
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
10495
10495
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
10496
10496
|
created_at: z.ZodString;
|
|
10497
10497
|
workspace_id: z.ZodString;
|
|
@@ -10705,7 +10705,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10705
10705
|
issued_at?: string | null | undefined;
|
|
10706
10706
|
is_issued?: boolean | undefined;
|
|
10707
10707
|
acs_user_id?: string | undefined;
|
|
10708
|
-
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" | "salto_ks_tag" | undefined;
|
|
10708
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10709
10709
|
external_type_display_name?: string | undefined;
|
|
10710
10710
|
acs_credential_pool_id?: string | undefined;
|
|
10711
10711
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10777,7 +10777,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10777
10777
|
issued_at?: string | null | undefined;
|
|
10778
10778
|
is_issued?: boolean | undefined;
|
|
10779
10779
|
acs_user_id?: string | undefined;
|
|
10780
|
-
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" | "salto_ks_tag" | undefined;
|
|
10780
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10781
10781
|
external_type_display_name?: string | undefined;
|
|
10782
10782
|
acs_credential_pool_id?: string | undefined;
|
|
10783
10783
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10854,7 +10854,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10854
10854
|
issued_at?: string | null | undefined;
|
|
10855
10855
|
is_issued?: boolean | undefined;
|
|
10856
10856
|
acs_user_id?: string | undefined;
|
|
10857
|
-
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" | "salto_ks_tag" | undefined;
|
|
10857
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10858
10858
|
external_type_display_name?: string | undefined;
|
|
10859
10859
|
acs_credential_pool_id?: string | undefined;
|
|
10860
10860
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10926,7 +10926,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
10926
10926
|
issued_at?: string | null | undefined;
|
|
10927
10927
|
is_issued?: boolean | undefined;
|
|
10928
10928
|
acs_user_id?: string | undefined;
|
|
10929
|
-
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" | "salto_ks_tag" | undefined;
|
|
10929
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
10930
10930
|
external_type_display_name?: string | undefined;
|
|
10931
10931
|
acs_credential_pool_id?: string | undefined;
|
|
10932
10932
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -11004,7 +11004,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
11004
11004
|
issued_at?: string | null | undefined;
|
|
11005
11005
|
is_issued?: boolean | undefined;
|
|
11006
11006
|
acs_user_id?: string | undefined;
|
|
11007
|
-
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" | "salto_ks_tag" | undefined;
|
|
11007
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
11008
11008
|
external_type_display_name?: string | undefined;
|
|
11009
11009
|
acs_credential_pool_id?: string | undefined;
|
|
11010
11010
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -11076,7 +11076,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
11076
11076
|
issued_at?: string | null | undefined;
|
|
11077
11077
|
is_issued?: boolean | undefined;
|
|
11078
11078
|
acs_user_id?: string | undefined;
|
|
11079
|
-
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" | "salto_ks_tag" | undefined;
|
|
11079
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
11080
11080
|
external_type_display_name?: string | undefined;
|
|
11081
11081
|
acs_credential_pool_id?: string | undefined;
|
|
11082
11082
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -17495,6 +17495,19 @@ declare const batch: z.ZodObject<{
|
|
|
17495
17495
|
message: string;
|
|
17496
17496
|
created_at: string;
|
|
17497
17497
|
warning_code: "being_deleted";
|
|
17498
|
+
}>, z.ZodObject<{
|
|
17499
|
+
created_at: z.ZodString;
|
|
17500
|
+
message: z.ZodString;
|
|
17501
|
+
} & {
|
|
17502
|
+
warning_code: z.ZodLiteral<"provider_service_unavailable">;
|
|
17503
|
+
}, "strip", z.ZodTypeAny, {
|
|
17504
|
+
message: string;
|
|
17505
|
+
created_at: string;
|
|
17506
|
+
warning_code: "provider_service_unavailable";
|
|
17507
|
+
}, {
|
|
17508
|
+
message: string;
|
|
17509
|
+
created_at: string;
|
|
17510
|
+
warning_code: "provider_service_unavailable";
|
|
17498
17511
|
}>]>, "many">;
|
|
17499
17512
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
17500
17513
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
@@ -17559,6 +17572,10 @@ declare const batch: z.ZodObject<{
|
|
|
17559
17572
|
message: string;
|
|
17560
17573
|
created_at: string;
|
|
17561
17574
|
warning_code: "being_deleted";
|
|
17575
|
+
} | {
|
|
17576
|
+
message: string;
|
|
17577
|
+
created_at: string;
|
|
17578
|
+
warning_code: "provider_service_unavailable";
|
|
17562
17579
|
})[];
|
|
17563
17580
|
custom_metadata: Record<string, string | boolean>;
|
|
17564
17581
|
automatically_manage_new_devices: boolean;
|
|
@@ -17633,6 +17650,10 @@ declare const batch: z.ZodObject<{
|
|
|
17633
17650
|
message: string;
|
|
17634
17651
|
created_at: string;
|
|
17635
17652
|
warning_code: "being_deleted";
|
|
17653
|
+
} | {
|
|
17654
|
+
message: string;
|
|
17655
|
+
created_at: string;
|
|
17656
|
+
warning_code: "provider_service_unavailable";
|
|
17636
17657
|
})[];
|
|
17637
17658
|
custom_metadata: Record<string, string | boolean>;
|
|
17638
17659
|
automatically_manage_new_devices: boolean;
|
|
@@ -18311,7 +18332,7 @@ declare const batch: z.ZodObject<{
|
|
|
18311
18332
|
workspace_id: z.ZodString;
|
|
18312
18333
|
created_at: z.ZodString;
|
|
18313
18334
|
display_name: z.ZodString;
|
|
18314
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
|
|
18335
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
|
|
18315
18336
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
18316
18337
|
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
18317
18338
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -18846,7 +18867,7 @@ declare const batch: z.ZodObject<{
|
|
|
18846
18867
|
acs_access_group_id: string;
|
|
18847
18868
|
})[] | undefined;
|
|
18848
18869
|
user_identity_id?: string | undefined;
|
|
18849
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
18870
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
18850
18871
|
external_type_display_name?: string | undefined;
|
|
18851
18872
|
access_schedule?: {
|
|
18852
18873
|
starts_at: string;
|
|
@@ -18983,7 +19004,7 @@ declare const batch: z.ZodObject<{
|
|
|
18983
19004
|
acs_access_group_id: string;
|
|
18984
19005
|
})[] | undefined;
|
|
18985
19006
|
user_identity_id?: string | undefined;
|
|
18986
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
19007
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
18987
19008
|
external_type_display_name?: string | undefined;
|
|
18988
19009
|
access_schedule?: {
|
|
18989
19010
|
starts_at: string;
|
|
@@ -19538,7 +19559,7 @@ declare const batch: z.ZodObject<{
|
|
|
19538
19559
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
19539
19560
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19540
19561
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
19541
|
-
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", "salto_ks_tag"]>>;
|
|
19562
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
19542
19563
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
19543
19564
|
created_at: z.ZodString;
|
|
19544
19565
|
workspace_id: z.ZodString;
|
|
@@ -19752,7 +19773,7 @@ declare const batch: z.ZodObject<{
|
|
|
19752
19773
|
issued_at?: string | null | undefined;
|
|
19753
19774
|
is_issued?: boolean | undefined;
|
|
19754
19775
|
acs_user_id?: string | undefined;
|
|
19755
|
-
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" | "salto_ks_tag" | undefined;
|
|
19776
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
19756
19777
|
external_type_display_name?: string | undefined;
|
|
19757
19778
|
acs_credential_pool_id?: string | undefined;
|
|
19758
19779
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19824,7 +19845,7 @@ declare const batch: z.ZodObject<{
|
|
|
19824
19845
|
issued_at?: string | null | undefined;
|
|
19825
19846
|
is_issued?: boolean | undefined;
|
|
19826
19847
|
acs_user_id?: string | undefined;
|
|
19827
|
-
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" | "salto_ks_tag" | undefined;
|
|
19848
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
19828
19849
|
external_type_display_name?: string | undefined;
|
|
19829
19850
|
acs_credential_pool_id?: string | undefined;
|
|
19830
19851
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -19848,7 +19869,7 @@ declare const batch: z.ZodObject<{
|
|
|
19848
19869
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
19849
19870
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19850
19871
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
19851
|
-
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", "salto_ks_tag"]>>;
|
|
19872
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
19852
19873
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
19853
19874
|
created_at: z.ZodString;
|
|
19854
19875
|
workspace_id: z.ZodString;
|
|
@@ -20062,7 +20083,7 @@ declare const batch: z.ZodObject<{
|
|
|
20062
20083
|
issued_at?: string | null | undefined;
|
|
20063
20084
|
is_issued?: boolean | undefined;
|
|
20064
20085
|
acs_user_id?: string | undefined;
|
|
20065
|
-
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" | "salto_ks_tag" | undefined;
|
|
20086
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
20066
20087
|
external_type_display_name?: string | undefined;
|
|
20067
20088
|
acs_credential_pool_id?: string | undefined;
|
|
20068
20089
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20134,7 +20155,7 @@ declare const batch: z.ZodObject<{
|
|
|
20134
20155
|
issued_at?: string | null | undefined;
|
|
20135
20156
|
is_issued?: boolean | undefined;
|
|
20136
20157
|
acs_user_id?: string | undefined;
|
|
20137
|
-
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" | "salto_ks_tag" | undefined;
|
|
20158
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
20138
20159
|
external_type_display_name?: string | undefined;
|
|
20139
20160
|
acs_credential_pool_id?: string | undefined;
|
|
20140
20161
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20443,7 +20464,7 @@ declare const batch: z.ZodObject<{
|
|
|
20443
20464
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
20444
20465
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20445
20466
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
20446
|
-
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", "salto_ks_tag"]>>;
|
|
20467
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
20447
20468
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
20448
20469
|
created_at: z.ZodString;
|
|
20449
20470
|
workspace_id: z.ZodString;
|
|
@@ -20657,7 +20678,7 @@ declare const batch: z.ZodObject<{
|
|
|
20657
20678
|
issued_at?: string | null | undefined;
|
|
20658
20679
|
is_issued?: boolean | undefined;
|
|
20659
20680
|
acs_user_id?: string | undefined;
|
|
20660
|
-
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" | "salto_ks_tag" | undefined;
|
|
20681
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
20661
20682
|
external_type_display_name?: string | undefined;
|
|
20662
20683
|
acs_credential_pool_id?: string | undefined;
|
|
20663
20684
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20729,7 +20750,7 @@ declare const batch: z.ZodObject<{
|
|
|
20729
20750
|
issued_at?: string | null | undefined;
|
|
20730
20751
|
is_issued?: boolean | undefined;
|
|
20731
20752
|
acs_user_id?: string | undefined;
|
|
20732
|
-
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" | "salto_ks_tag" | undefined;
|
|
20753
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
20733
20754
|
external_type_display_name?: string | undefined;
|
|
20734
20755
|
acs_credential_pool_id?: string | undefined;
|
|
20735
20756
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -20752,7 +20773,7 @@ declare const batch: z.ZodObject<{
|
|
|
20752
20773
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
20753
20774
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20754
20775
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
20755
|
-
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", "salto_ks_tag"]>>;
|
|
20776
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
20756
20777
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
20757
20778
|
created_at: z.ZodString;
|
|
20758
20779
|
workspace_id: z.ZodString;
|
|
@@ -20966,7 +20987,7 @@ declare const batch: z.ZodObject<{
|
|
|
20966
20987
|
issued_at?: string | null | undefined;
|
|
20967
20988
|
is_issued?: boolean | undefined;
|
|
20968
20989
|
acs_user_id?: string | undefined;
|
|
20969
|
-
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" | "salto_ks_tag" | undefined;
|
|
20990
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
20970
20991
|
external_type_display_name?: string | undefined;
|
|
20971
20992
|
acs_credential_pool_id?: string | undefined;
|
|
20972
20993
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21038,7 +21059,7 @@ declare const batch: z.ZodObject<{
|
|
|
21038
21059
|
issued_at?: string | null | undefined;
|
|
21039
21060
|
is_issued?: boolean | undefined;
|
|
21040
21061
|
acs_user_id?: string | undefined;
|
|
21041
|
-
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" | "salto_ks_tag" | undefined;
|
|
21062
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21042
21063
|
external_type_display_name?: string | undefined;
|
|
21043
21064
|
acs_credential_pool_id?: string | undefined;
|
|
21044
21065
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21147,7 +21168,7 @@ declare const batch: z.ZodObject<{
|
|
|
21147
21168
|
issued_at?: string | null | undefined;
|
|
21148
21169
|
is_issued?: boolean | undefined;
|
|
21149
21170
|
acs_user_id?: string | undefined;
|
|
21150
|
-
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" | "salto_ks_tag" | undefined;
|
|
21171
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21151
21172
|
external_type_display_name?: string | undefined;
|
|
21152
21173
|
acs_credential_pool_id?: string | undefined;
|
|
21153
21174
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21219,7 +21240,7 @@ declare const batch: z.ZodObject<{
|
|
|
21219
21240
|
issued_at?: string | null | undefined;
|
|
21220
21241
|
is_issued?: boolean | undefined;
|
|
21221
21242
|
acs_user_id?: string | undefined;
|
|
21222
|
-
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" | "salto_ks_tag" | undefined;
|
|
21243
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21223
21244
|
external_type_display_name?: string | undefined;
|
|
21224
21245
|
acs_credential_pool_id?: string | undefined;
|
|
21225
21246
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21318,7 +21339,7 @@ declare const batch: z.ZodObject<{
|
|
|
21318
21339
|
issued_at?: string | null | undefined;
|
|
21319
21340
|
is_issued?: boolean | undefined;
|
|
21320
21341
|
acs_user_id?: string | undefined;
|
|
21321
|
-
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" | "salto_ks_tag" | undefined;
|
|
21342
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21322
21343
|
external_type_display_name?: string | undefined;
|
|
21323
21344
|
acs_credential_pool_id?: string | undefined;
|
|
21324
21345
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21390,7 +21411,7 @@ declare const batch: z.ZodObject<{
|
|
|
21390
21411
|
issued_at?: string | null | undefined;
|
|
21391
21412
|
is_issued?: boolean | undefined;
|
|
21392
21413
|
acs_user_id?: string | undefined;
|
|
21393
|
-
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" | "salto_ks_tag" | undefined;
|
|
21414
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21394
21415
|
external_type_display_name?: string | undefined;
|
|
21395
21416
|
acs_credential_pool_id?: string | undefined;
|
|
21396
21417
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21494,7 +21515,7 @@ declare const batch: z.ZodObject<{
|
|
|
21494
21515
|
issued_at?: string | null | undefined;
|
|
21495
21516
|
is_issued?: boolean | undefined;
|
|
21496
21517
|
acs_user_id?: string | undefined;
|
|
21497
|
-
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" | "salto_ks_tag" | undefined;
|
|
21518
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21498
21519
|
external_type_display_name?: string | undefined;
|
|
21499
21520
|
acs_credential_pool_id?: string | undefined;
|
|
21500
21521
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21566,7 +21587,7 @@ declare const batch: z.ZodObject<{
|
|
|
21566
21587
|
issued_at?: string | null | undefined;
|
|
21567
21588
|
is_issued?: boolean | undefined;
|
|
21568
21589
|
acs_user_id?: string | undefined;
|
|
21569
|
-
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" | "salto_ks_tag" | undefined;
|
|
21590
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21570
21591
|
external_type_display_name?: string | undefined;
|
|
21571
21592
|
acs_credential_pool_id?: string | undefined;
|
|
21572
21593
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21671,7 +21692,7 @@ declare const batch: z.ZodObject<{
|
|
|
21671
21692
|
issued_at?: string | null | undefined;
|
|
21672
21693
|
is_issued?: boolean | undefined;
|
|
21673
21694
|
acs_user_id?: string | undefined;
|
|
21674
|
-
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" | "salto_ks_tag" | undefined;
|
|
21695
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21675
21696
|
external_type_display_name?: string | undefined;
|
|
21676
21697
|
acs_credential_pool_id?: string | undefined;
|
|
21677
21698
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21743,7 +21764,7 @@ declare const batch: z.ZodObject<{
|
|
|
21743
21764
|
issued_at?: string | null | undefined;
|
|
21744
21765
|
is_issued?: boolean | undefined;
|
|
21745
21766
|
acs_user_id?: string | undefined;
|
|
21746
|
-
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" | "salto_ks_tag" | undefined;
|
|
21767
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
21747
21768
|
external_type_display_name?: string | undefined;
|
|
21748
21769
|
acs_credential_pool_id?: string | undefined;
|
|
21749
21770
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -21906,7 +21927,7 @@ declare const batch: z.ZodObject<{
|
|
|
21906
21927
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
21907
21928
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
21908
21929
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
21909
|
-
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", "salto_ks_tag"]>>;
|
|
21930
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
21910
21931
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
21911
21932
|
created_at: z.ZodString;
|
|
21912
21933
|
workspace_id: z.ZodString;
|
|
@@ -22120,7 +22141,7 @@ declare const batch: z.ZodObject<{
|
|
|
22120
22141
|
issued_at?: string | null | undefined;
|
|
22121
22142
|
is_issued?: boolean | undefined;
|
|
22122
22143
|
acs_user_id?: string | undefined;
|
|
22123
|
-
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" | "salto_ks_tag" | undefined;
|
|
22144
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22124
22145
|
external_type_display_name?: string | undefined;
|
|
22125
22146
|
acs_credential_pool_id?: string | undefined;
|
|
22126
22147
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22192,7 +22213,7 @@ declare const batch: z.ZodObject<{
|
|
|
22192
22213
|
issued_at?: string | null | undefined;
|
|
22193
22214
|
is_issued?: boolean | undefined;
|
|
22194
22215
|
acs_user_id?: string | undefined;
|
|
22195
|
-
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" | "salto_ks_tag" | undefined;
|
|
22216
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22196
22217
|
external_type_display_name?: string | undefined;
|
|
22197
22218
|
acs_credential_pool_id?: string | undefined;
|
|
22198
22219
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22215,7 +22236,7 @@ declare const batch: z.ZodObject<{
|
|
|
22215
22236
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
22216
22237
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
22217
22238
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
22218
|
-
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", "salto_ks_tag"]>>;
|
|
22239
|
+
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", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
22219
22240
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
22220
22241
|
created_at: z.ZodString;
|
|
22221
22242
|
workspace_id: z.ZodString;
|
|
@@ -22429,7 +22450,7 @@ declare const batch: z.ZodObject<{
|
|
|
22429
22450
|
issued_at?: string | null | undefined;
|
|
22430
22451
|
is_issued?: boolean | undefined;
|
|
22431
22452
|
acs_user_id?: string | undefined;
|
|
22432
|
-
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" | "salto_ks_tag" | undefined;
|
|
22453
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22433
22454
|
external_type_display_name?: string | undefined;
|
|
22434
22455
|
acs_credential_pool_id?: string | undefined;
|
|
22435
22456
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22501,7 +22522,7 @@ declare const batch: z.ZodObject<{
|
|
|
22501
22522
|
issued_at?: string | null | undefined;
|
|
22502
22523
|
is_issued?: boolean | undefined;
|
|
22503
22524
|
acs_user_id?: string | undefined;
|
|
22504
|
-
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" | "salto_ks_tag" | undefined;
|
|
22525
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22505
22526
|
external_type_display_name?: string | undefined;
|
|
22506
22527
|
acs_credential_pool_id?: string | undefined;
|
|
22507
22528
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22578,7 +22599,7 @@ declare const batch: z.ZodObject<{
|
|
|
22578
22599
|
issued_at?: string | null | undefined;
|
|
22579
22600
|
is_issued?: boolean | undefined;
|
|
22580
22601
|
acs_user_id?: string | undefined;
|
|
22581
|
-
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" | "salto_ks_tag" | undefined;
|
|
22602
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22582
22603
|
external_type_display_name?: string | undefined;
|
|
22583
22604
|
acs_credential_pool_id?: string | undefined;
|
|
22584
22605
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22650,7 +22671,7 @@ declare const batch: z.ZodObject<{
|
|
|
22650
22671
|
issued_at?: string | null | undefined;
|
|
22651
22672
|
is_issued?: boolean | undefined;
|
|
22652
22673
|
acs_user_id?: string | undefined;
|
|
22653
|
-
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" | "salto_ks_tag" | undefined;
|
|
22674
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22654
22675
|
external_type_display_name?: string | undefined;
|
|
22655
22676
|
acs_credential_pool_id?: string | undefined;
|
|
22656
22677
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22728,7 +22749,7 @@ declare const batch: z.ZodObject<{
|
|
|
22728
22749
|
issued_at?: string | null | undefined;
|
|
22729
22750
|
is_issued?: boolean | undefined;
|
|
22730
22751
|
acs_user_id?: string | undefined;
|
|
22731
|
-
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" | "salto_ks_tag" | undefined;
|
|
22752
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22732
22753
|
external_type_display_name?: string | undefined;
|
|
22733
22754
|
acs_credential_pool_id?: string | undefined;
|
|
22734
22755
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -22800,7 +22821,7 @@ declare const batch: z.ZodObject<{
|
|
|
22800
22821
|
issued_at?: string | null | undefined;
|
|
22801
22822
|
is_issued?: boolean | undefined;
|
|
22802
22823
|
acs_user_id?: string | undefined;
|
|
22803
|
-
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" | "salto_ks_tag" | undefined;
|
|
22824
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
22804
22825
|
external_type_display_name?: string | undefined;
|
|
22805
22826
|
acs_credential_pool_id?: string | undefined;
|
|
22806
22827
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -24193,7 +24214,7 @@ declare const batch: z.ZodObject<{
|
|
|
24193
24214
|
workspace_id: z.ZodString;
|
|
24194
24215
|
created_at: z.ZodString;
|
|
24195
24216
|
display_name: z.ZodString;
|
|
24196
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user"]>>;
|
|
24217
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user", "salto_space_user", "avigilon_alta_user"]>>;
|
|
24197
24218
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
24198
24219
|
is_suspended: z.ZodOptional<z.ZodBoolean>;
|
|
24199
24220
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -24728,7 +24749,7 @@ declare const batch: z.ZodObject<{
|
|
|
24728
24749
|
acs_access_group_id: string;
|
|
24729
24750
|
})[] | undefined;
|
|
24730
24751
|
user_identity_id?: string | undefined;
|
|
24731
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
24752
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
24732
24753
|
external_type_display_name?: string | undefined;
|
|
24733
24754
|
access_schedule?: {
|
|
24734
24755
|
starts_at: string;
|
|
@@ -24865,7 +24886,7 @@ declare const batch: z.ZodObject<{
|
|
|
24865
24886
|
acs_access_group_id: string;
|
|
24866
24887
|
})[] | undefined;
|
|
24867
24888
|
user_identity_id?: string | undefined;
|
|
24868
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
24889
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
24869
24890
|
external_type_display_name?: string | undefined;
|
|
24870
24891
|
access_schedule?: {
|
|
24871
24892
|
starts_at: string;
|
|
@@ -39333,6 +39354,10 @@ declare const batch: z.ZodObject<{
|
|
|
39333
39354
|
message: string;
|
|
39334
39355
|
created_at: string;
|
|
39335
39356
|
warning_code: "being_deleted";
|
|
39357
|
+
} | {
|
|
39358
|
+
message: string;
|
|
39359
|
+
created_at: string;
|
|
39360
|
+
warning_code: "provider_service_unavailable";
|
|
39336
39361
|
})[];
|
|
39337
39362
|
custom_metadata: Record<string, string | boolean>;
|
|
39338
39363
|
automatically_manage_new_devices: boolean;
|
|
@@ -39615,7 +39640,7 @@ declare const batch: z.ZodObject<{
|
|
|
39615
39640
|
acs_access_group_id: string;
|
|
39616
39641
|
})[] | undefined;
|
|
39617
39642
|
user_identity_id?: string | undefined;
|
|
39618
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
39643
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
39619
39644
|
external_type_display_name?: string | undefined;
|
|
39620
39645
|
access_schedule?: {
|
|
39621
39646
|
starts_at: string;
|
|
@@ -39804,7 +39829,7 @@ declare const batch: z.ZodObject<{
|
|
|
39804
39829
|
issued_at?: string | null | undefined;
|
|
39805
39830
|
is_issued?: boolean | undefined;
|
|
39806
39831
|
acs_user_id?: string | undefined;
|
|
39807
|
-
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" | "salto_ks_tag" | undefined;
|
|
39832
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
39808
39833
|
external_type_display_name?: string | undefined;
|
|
39809
39834
|
acs_credential_pool_id?: string | undefined;
|
|
39810
39835
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -39877,7 +39902,7 @@ declare const batch: z.ZodObject<{
|
|
|
39877
39902
|
issued_at?: string | null | undefined;
|
|
39878
39903
|
is_issued?: boolean | undefined;
|
|
39879
39904
|
acs_user_id?: string | undefined;
|
|
39880
|
-
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" | "salto_ks_tag" | undefined;
|
|
39905
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
39881
39906
|
external_type_display_name?: string | undefined;
|
|
39882
39907
|
acs_credential_pool_id?: string | undefined;
|
|
39883
39908
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -40157,7 +40182,7 @@ declare const batch: z.ZodObject<{
|
|
|
40157
40182
|
issued_at?: string | null | undefined;
|
|
40158
40183
|
is_issued?: boolean | undefined;
|
|
40159
40184
|
acs_user_id?: string | undefined;
|
|
40160
|
-
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" | "salto_ks_tag" | undefined;
|
|
40185
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
40161
40186
|
external_type_display_name?: string | undefined;
|
|
40162
40187
|
acs_credential_pool_id?: string | undefined;
|
|
40163
40188
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -40229,7 +40254,7 @@ declare const batch: z.ZodObject<{
|
|
|
40229
40254
|
issued_at?: string | null | undefined;
|
|
40230
40255
|
is_issued?: boolean | undefined;
|
|
40231
40256
|
acs_user_id?: string | undefined;
|
|
40232
|
-
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" | "salto_ks_tag" | undefined;
|
|
40257
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
40233
40258
|
external_type_display_name?: string | undefined;
|
|
40234
40259
|
acs_credential_pool_id?: string | undefined;
|
|
40235
40260
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -40440,7 +40465,7 @@ declare const batch: z.ZodObject<{
|
|
|
40440
40465
|
issued_at?: string | null | undefined;
|
|
40441
40466
|
is_issued?: boolean | undefined;
|
|
40442
40467
|
acs_user_id?: string | undefined;
|
|
40443
|
-
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" | "salto_ks_tag" | undefined;
|
|
40468
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
40444
40469
|
external_type_display_name?: string | undefined;
|
|
40445
40470
|
acs_credential_pool_id?: string | undefined;
|
|
40446
40471
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -40512,7 +40537,7 @@ declare const batch: z.ZodObject<{
|
|
|
40512
40537
|
issued_at?: string | null | undefined;
|
|
40513
40538
|
is_issued?: boolean | undefined;
|
|
40514
40539
|
acs_user_id?: string | undefined;
|
|
40515
|
-
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" | "salto_ks_tag" | undefined;
|
|
40540
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
40516
40541
|
external_type_display_name?: string | undefined;
|
|
40517
40542
|
acs_credential_pool_id?: string | undefined;
|
|
40518
40543
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -40788,7 +40813,7 @@ declare const batch: z.ZodObject<{
|
|
|
40788
40813
|
acs_access_group_id: string;
|
|
40789
40814
|
})[] | undefined;
|
|
40790
40815
|
user_identity_id?: string | undefined;
|
|
40791
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
40816
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
40792
40817
|
external_type_display_name?: string | undefined;
|
|
40793
40818
|
access_schedule?: {
|
|
40794
40819
|
starts_at: string;
|
|
@@ -44309,6 +44334,10 @@ declare const batch: z.ZodObject<{
|
|
|
44309
44334
|
message: string;
|
|
44310
44335
|
created_at: string;
|
|
44311
44336
|
warning_code: "being_deleted";
|
|
44337
|
+
} | {
|
|
44338
|
+
message: string;
|
|
44339
|
+
created_at: string;
|
|
44340
|
+
warning_code: "provider_service_unavailable";
|
|
44312
44341
|
})[];
|
|
44313
44342
|
custom_metadata: Record<string, string | boolean>;
|
|
44314
44343
|
automatically_manage_new_devices: boolean;
|
|
@@ -44591,7 +44620,7 @@ declare const batch: z.ZodObject<{
|
|
|
44591
44620
|
acs_access_group_id: string;
|
|
44592
44621
|
})[] | undefined;
|
|
44593
44622
|
user_identity_id?: string | undefined;
|
|
44594
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
44623
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
44595
44624
|
external_type_display_name?: string | undefined;
|
|
44596
44625
|
access_schedule?: {
|
|
44597
44626
|
starts_at: string;
|
|
@@ -44780,7 +44809,7 @@ declare const batch: z.ZodObject<{
|
|
|
44780
44809
|
issued_at?: string | null | undefined;
|
|
44781
44810
|
is_issued?: boolean | undefined;
|
|
44782
44811
|
acs_user_id?: string | undefined;
|
|
44783
|
-
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" | "salto_ks_tag" | undefined;
|
|
44812
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
44784
44813
|
external_type_display_name?: string | undefined;
|
|
44785
44814
|
acs_credential_pool_id?: string | undefined;
|
|
44786
44815
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -44853,7 +44882,7 @@ declare const batch: z.ZodObject<{
|
|
|
44853
44882
|
issued_at?: string | null | undefined;
|
|
44854
44883
|
is_issued?: boolean | undefined;
|
|
44855
44884
|
acs_user_id?: string | undefined;
|
|
44856
|
-
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" | "salto_ks_tag" | undefined;
|
|
44885
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
44857
44886
|
external_type_display_name?: string | undefined;
|
|
44858
44887
|
acs_credential_pool_id?: string | undefined;
|
|
44859
44888
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -45133,7 +45162,7 @@ declare const batch: z.ZodObject<{
|
|
|
45133
45162
|
issued_at?: string | null | undefined;
|
|
45134
45163
|
is_issued?: boolean | undefined;
|
|
45135
45164
|
acs_user_id?: string | undefined;
|
|
45136
|
-
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" | "salto_ks_tag" | undefined;
|
|
45165
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
45137
45166
|
external_type_display_name?: string | undefined;
|
|
45138
45167
|
acs_credential_pool_id?: string | undefined;
|
|
45139
45168
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -45205,7 +45234,7 @@ declare const batch: z.ZodObject<{
|
|
|
45205
45234
|
issued_at?: string | null | undefined;
|
|
45206
45235
|
is_issued?: boolean | undefined;
|
|
45207
45236
|
acs_user_id?: string | undefined;
|
|
45208
|
-
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" | "salto_ks_tag" | undefined;
|
|
45237
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
45209
45238
|
external_type_display_name?: string | undefined;
|
|
45210
45239
|
acs_credential_pool_id?: string | undefined;
|
|
45211
45240
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -45416,7 +45445,7 @@ declare const batch: z.ZodObject<{
|
|
|
45416
45445
|
issued_at?: string | null | undefined;
|
|
45417
45446
|
is_issued?: boolean | undefined;
|
|
45418
45447
|
acs_user_id?: string | undefined;
|
|
45419
|
-
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" | "salto_ks_tag" | undefined;
|
|
45448
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
45420
45449
|
external_type_display_name?: string | undefined;
|
|
45421
45450
|
acs_credential_pool_id?: string | undefined;
|
|
45422
45451
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -45488,7 +45517,7 @@ declare const batch: z.ZodObject<{
|
|
|
45488
45517
|
issued_at?: string | null | undefined;
|
|
45489
45518
|
is_issued?: boolean | undefined;
|
|
45490
45519
|
acs_user_id?: string | undefined;
|
|
45491
|
-
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" | "salto_ks_tag" | undefined;
|
|
45520
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
45492
45521
|
external_type_display_name?: string | undefined;
|
|
45493
45522
|
acs_credential_pool_id?: string | undefined;
|
|
45494
45523
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -45764,7 +45793,7 @@ declare const batch: z.ZodObject<{
|
|
|
45764
45793
|
acs_access_group_id: string;
|
|
45765
45794
|
})[] | undefined;
|
|
45766
45795
|
user_identity_id?: string | undefined;
|
|
45767
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
45796
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | "avigilon_alta_user" | undefined;
|
|
45768
45797
|
external_type_display_name?: string | undefined;
|
|
45769
45798
|
access_schedule?: {
|
|
45770
45799
|
starts_at: string;
|
|
@@ -48887,6 +48916,19 @@ declare const connected_account_warning: z.ZodDiscriminatedUnion<"warning_code",
|
|
|
48887
48916
|
message: string;
|
|
48888
48917
|
created_at: string;
|
|
48889
48918
|
warning_code: "being_deleted";
|
|
48919
|
+
}>, z.ZodObject<{
|
|
48920
|
+
created_at: z.ZodString;
|
|
48921
|
+
message: z.ZodString;
|
|
48922
|
+
} & {
|
|
48923
|
+
warning_code: z.ZodLiteral<"provider_service_unavailable">;
|
|
48924
|
+
}, "strip", z.ZodTypeAny, {
|
|
48925
|
+
message: string;
|
|
48926
|
+
created_at: string;
|
|
48927
|
+
warning_code: "provider_service_unavailable";
|
|
48928
|
+
}, {
|
|
48929
|
+
message: string;
|
|
48930
|
+
created_at: string;
|
|
48931
|
+
warning_code: "provider_service_unavailable";
|
|
48890
48932
|
}>]>;
|
|
48891
48933
|
declare const connected_account: z.ZodObject<{
|
|
48892
48934
|
connected_account_id: z.ZodString;
|
|
@@ -49133,6 +49175,19 @@ declare const connected_account: z.ZodObject<{
|
|
|
49133
49175
|
message: string;
|
|
49134
49176
|
created_at: string;
|
|
49135
49177
|
warning_code: "being_deleted";
|
|
49178
|
+
}>, z.ZodObject<{
|
|
49179
|
+
created_at: z.ZodString;
|
|
49180
|
+
message: z.ZodString;
|
|
49181
|
+
} & {
|
|
49182
|
+
warning_code: z.ZodLiteral<"provider_service_unavailable">;
|
|
49183
|
+
}, "strip", z.ZodTypeAny, {
|
|
49184
|
+
message: string;
|
|
49185
|
+
created_at: string;
|
|
49186
|
+
warning_code: "provider_service_unavailable";
|
|
49187
|
+
}, {
|
|
49188
|
+
message: string;
|
|
49189
|
+
created_at: string;
|
|
49190
|
+
warning_code: "provider_service_unavailable";
|
|
49136
49191
|
}>]>, "many">;
|
|
49137
49192
|
custom_metadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
|
|
49138
49193
|
automatically_manage_new_devices: z.ZodBoolean;
|
|
@@ -49197,6 +49252,10 @@ declare const connected_account: z.ZodObject<{
|
|
|
49197
49252
|
message: string;
|
|
49198
49253
|
created_at: string;
|
|
49199
49254
|
warning_code: "being_deleted";
|
|
49255
|
+
} | {
|
|
49256
|
+
message: string;
|
|
49257
|
+
created_at: string;
|
|
49258
|
+
warning_code: "provider_service_unavailable";
|
|
49200
49259
|
})[];
|
|
49201
49260
|
custom_metadata: Record<string, string | boolean>;
|
|
49202
49261
|
automatically_manage_new_devices: boolean;
|
|
@@ -49271,6 +49330,10 @@ declare const connected_account: z.ZodObject<{
|
|
|
49271
49330
|
message: string;
|
|
49272
49331
|
created_at: string;
|
|
49273
49332
|
warning_code: "being_deleted";
|
|
49333
|
+
} | {
|
|
49334
|
+
message: string;
|
|
49335
|
+
created_at: string;
|
|
49336
|
+
warning_code: "provider_service_unavailable";
|
|
49274
49337
|
})[];
|
|
49275
49338
|
custom_metadata: Record<string, string | boolean>;
|
|
49276
49339
|
automatically_manage_new_devices: boolean;
|
|
@@ -64151,7 +64214,7 @@ type Routes = {
|
|
|
64151
64214
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64152
64215
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
64153
64216
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64154
|
-
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' | 'salto_ks_tag') | undefined;
|
|
64217
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
64155
64218
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
64156
64219
|
external_type_display_name?: string | undefined;
|
|
64157
64220
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -64281,7 +64344,7 @@ type Routes = {
|
|
|
64281
64344
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64282
64345
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
64283
64346
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64284
|
-
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' | 'salto_ks_tag') | undefined;
|
|
64347
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
64285
64348
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
64286
64349
|
external_type_display_name?: string | undefined;
|
|
64287
64350
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -64478,7 +64541,7 @@ type Routes = {
|
|
|
64478
64541
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64479
64542
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
64480
64543
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64481
|
-
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' | 'salto_ks_tag') | undefined;
|
|
64544
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
64482
64545
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
64483
64546
|
external_type_display_name?: string | undefined;
|
|
64484
64547
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -64608,7 +64671,7 @@ type Routes = {
|
|
|
64608
64671
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
64609
64672
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
64610
64673
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
64611
|
-
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' | 'salto_ks_tag') | undefined;
|
|
64674
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
64612
64675
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
64613
64676
|
external_type_display_name?: string | undefined;
|
|
64614
64677
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -66743,7 +66806,7 @@ type Routes = {
|
|
|
66743
66806
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
66744
66807
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
66745
66808
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66746
|
-
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' | 'salto_ks_tag') | undefined;
|
|
66809
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
66747
66810
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
66748
66811
|
external_type_display_name?: string | undefined;
|
|
66749
66812
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -66873,7 +66936,7 @@ type Routes = {
|
|
|
66873
66936
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
66874
66937
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
66875
66938
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
66876
|
-
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' | 'salto_ks_tag') | undefined;
|
|
66939
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
66877
66940
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
66878
66941
|
external_type_display_name?: string | undefined;
|
|
66879
66942
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -67070,7 +67133,7 @@ type Routes = {
|
|
|
67070
67133
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
67071
67134
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
67072
67135
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67073
|
-
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' | 'salto_ks_tag') | undefined;
|
|
67136
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
67074
67137
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
67075
67138
|
external_type_display_name?: string | undefined;
|
|
67076
67139
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -67200,7 +67263,7 @@ type Routes = {
|
|
|
67200
67263
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
67201
67264
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
67202
67265
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
67203
|
-
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' | 'salto_ks_tag') | undefined;
|
|
67266
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
67204
67267
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
67205
67268
|
external_type_display_name?: string | undefined;
|
|
67206
67269
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -71223,7 +71286,7 @@ type Routes = {
|
|
|
71223
71286
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
71224
71287
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
71225
71288
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71226
|
-
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' | 'salto_ks_tag') | undefined;
|
|
71289
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
71227
71290
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
71228
71291
|
external_type_display_name?: string | undefined;
|
|
71229
71292
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -71353,7 +71416,7 @@ type Routes = {
|
|
|
71353
71416
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
71354
71417
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
71355
71418
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71356
|
-
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' | 'salto_ks_tag') | undefined;
|
|
71419
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
71357
71420
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
71358
71421
|
external_type_display_name?: string | undefined;
|
|
71359
71422
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -71550,7 +71613,7 @@ type Routes = {
|
|
|
71550
71613
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
71551
71614
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
71552
71615
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71553
|
-
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' | 'salto_ks_tag') | undefined;
|
|
71616
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
71554
71617
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
71555
71618
|
external_type_display_name?: string | undefined;
|
|
71556
71619
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -71680,7 +71743,7 @@ type Routes = {
|
|
|
71680
71743
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
71681
71744
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
71682
71745
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
71683
|
-
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' | 'salto_ks_tag') | undefined;
|
|
71746
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
71684
71747
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
71685
71748
|
external_type_display_name?: string | undefined;
|
|
71686
71749
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -73689,7 +73752,7 @@ type Routes = {
|
|
|
73689
73752
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
73690
73753
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
73691
73754
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73692
|
-
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' | 'salto_ks_tag') | undefined;
|
|
73755
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
73693
73756
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
73694
73757
|
external_type_display_name?: string | undefined;
|
|
73695
73758
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -73819,7 +73882,7 @@ type Routes = {
|
|
|
73819
73882
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
73820
73883
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
73821
73884
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
73822
|
-
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' | 'salto_ks_tag') | undefined;
|
|
73885
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
73823
73886
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
73824
73887
|
external_type_display_name?: string | undefined;
|
|
73825
73888
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -74016,7 +74079,7 @@ type Routes = {
|
|
|
74016
74079
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
74017
74080
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
74018
74081
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
74019
|
-
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' | 'salto_ks_tag') | undefined;
|
|
74082
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
74020
74083
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
74021
74084
|
external_type_display_name?: string | undefined;
|
|
74022
74085
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -74146,7 +74209,7 @@ type Routes = {
|
|
|
74146
74209
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
74147
74210
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
74148
74211
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
74149
|
-
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' | 'salto_ks_tag') | undefined;
|
|
74212
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
74150
74213
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
74151
74214
|
external_type_display_name?: string | undefined;
|
|
74152
74215
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -76988,6 +77051,13 @@ type Routes = {
|
|
|
76988
77051
|
message: string;
|
|
76989
77052
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76990
77053
|
warning_code: 'being_deleted';
|
|
77054
|
+
} | {
|
|
77055
|
+
/** Date and time at which Seam created the warning. */
|
|
77056
|
+
created_at: string;
|
|
77057
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77058
|
+
message: string;
|
|
77059
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77060
|
+
warning_code: 'provider_service_unavailable';
|
|
76991
77061
|
})[];
|
|
76992
77062
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
76993
77063
|
custom_metadata: {
|
|
@@ -78499,7 +78569,7 @@ type Routes = {
|
|
|
78499
78569
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78500
78570
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
78501
78571
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78502
|
-
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' | 'salto_ks_tag') | undefined;
|
|
78572
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
78503
78573
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
78504
78574
|
external_type_display_name?: string | undefined;
|
|
78505
78575
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -78629,7 +78699,7 @@ type Routes = {
|
|
|
78629
78699
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78630
78700
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
78631
78701
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78632
|
-
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' | 'salto_ks_tag') | undefined;
|
|
78702
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
78633
78703
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
78634
78704
|
external_type_display_name?: string | undefined;
|
|
78635
78705
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -78826,7 +78896,7 @@ type Routes = {
|
|
|
78826
78896
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78827
78897
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
78828
78898
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78829
|
-
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' | 'salto_ks_tag') | undefined;
|
|
78899
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
78830
78900
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
78831
78901
|
external_type_display_name?: string | undefined;
|
|
78832
78902
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -78956,7 +79026,7 @@ type Routes = {
|
|
|
78956
79026
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
78957
79027
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
78958
79028
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
78959
|
-
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' | 'salto_ks_tag') | undefined;
|
|
79029
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
78960
79030
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
78961
79031
|
external_type_display_name?: string | undefined;
|
|
78962
79032
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -81684,7 +81754,7 @@ type Routes = {
|
|
|
81684
81754
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
81685
81755
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
81686
81756
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
81687
|
-
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' | 'salto_ks_tag') | undefined;
|
|
81757
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
81688
81758
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
81689
81759
|
external_type_display_name?: string | undefined;
|
|
81690
81760
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -82750,7 +82820,7 @@ type Routes = {
|
|
|
82750
82820
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
82751
82821
|
display_name: string;
|
|
82752
82822
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
82753
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
82823
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
82754
82824
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
82755
82825
|
external_type_display_name?: string | undefined;
|
|
82756
82826
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -83456,7 +83526,7 @@ type Routes = {
|
|
|
83456
83526
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
83457
83527
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
83458
83528
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83459
|
-
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' | 'salto_ks_tag') | undefined;
|
|
83529
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
83460
83530
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
83461
83531
|
external_type_display_name?: string | undefined;
|
|
83462
83532
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -83657,7 +83727,7 @@ type Routes = {
|
|
|
83657
83727
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
83658
83728
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
83659
83729
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83660
|
-
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' | 'salto_ks_tag') | undefined;
|
|
83730
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
83661
83731
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
83662
83732
|
external_type_display_name?: string | undefined;
|
|
83663
83733
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -83815,7 +83885,7 @@ type Routes = {
|
|
|
83815
83885
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
83816
83886
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
83817
83887
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83818
|
-
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' | 'salto_ks_tag') | undefined;
|
|
83888
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
83819
83889
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
83820
83890
|
external_type_display_name?: string | undefined;
|
|
83821
83891
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -83978,7 +84048,7 @@ type Routes = {
|
|
|
83978
84048
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
83979
84049
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
83980
84050
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
83981
|
-
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' | 'salto_ks_tag') | undefined;
|
|
84051
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
83982
84052
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
83983
84053
|
external_type_display_name?: string | undefined;
|
|
83984
84054
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -84145,7 +84215,7 @@ type Routes = {
|
|
|
84145
84215
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84146
84216
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
84147
84217
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84148
|
-
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' | 'salto_ks_tag') | undefined;
|
|
84218
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
84149
84219
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
84150
84220
|
external_type_display_name?: string | undefined;
|
|
84151
84221
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -84470,7 +84540,7 @@ type Routes = {
|
|
|
84470
84540
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84471
84541
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
84472
84542
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84473
|
-
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' | 'salto_ks_tag') | undefined;
|
|
84543
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
84474
84544
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
84475
84545
|
external_type_display_name?: string | undefined;
|
|
84476
84546
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -84616,7 +84686,7 @@ type Routes = {
|
|
|
84616
84686
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84617
84687
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
84618
84688
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84619
|
-
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' | 'salto_ks_tag') | undefined;
|
|
84689
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
84620
84690
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
84621
84691
|
external_type_display_name?: string | undefined;
|
|
84622
84692
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -84775,7 +84845,7 @@ type Routes = {
|
|
|
84775
84845
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84776
84846
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
84777
84847
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84778
|
-
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' | 'salto_ks_tag') | undefined;
|
|
84848
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
84779
84849
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
84780
84850
|
external_type_display_name?: string | undefined;
|
|
84781
84851
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -84929,7 +84999,7 @@ type Routes = {
|
|
|
84929
84999
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
84930
85000
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
84931
85001
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
84932
|
-
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' | 'salto_ks_tag') | undefined;
|
|
85002
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
84933
85003
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
84934
85004
|
external_type_display_name?: string | undefined;
|
|
84935
85005
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -85219,7 +85289,7 @@ type Routes = {
|
|
|
85219
85289
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85220
85290
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
85221
85291
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85222
|
-
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' | 'salto_ks_tag') | undefined;
|
|
85292
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
85223
85293
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
85224
85294
|
external_type_display_name?: string | undefined;
|
|
85225
85295
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -85349,7 +85419,7 @@ type Routes = {
|
|
|
85349
85419
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85350
85420
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
85351
85421
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85352
|
-
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' | 'salto_ks_tag') | undefined;
|
|
85422
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
85353
85423
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
85354
85424
|
external_type_display_name?: string | undefined;
|
|
85355
85425
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -85546,7 +85616,7 @@ type Routes = {
|
|
|
85546
85616
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85547
85617
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
85548
85618
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85549
|
-
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' | 'salto_ks_tag') | undefined;
|
|
85619
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
85550
85620
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
85551
85621
|
external_type_display_name?: string | undefined;
|
|
85552
85622
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -85676,7 +85746,7 @@ type Routes = {
|
|
|
85676
85746
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
85677
85747
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
85678
85748
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
85679
|
-
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' | 'salto_ks_tag') | undefined;
|
|
85749
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
85680
85750
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
85681
85751
|
external_type_display_name?: string | undefined;
|
|
85682
85752
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -86667,7 +86737,7 @@ type Routes = {
|
|
|
86667
86737
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
86668
86738
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
86669
86739
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
86670
|
-
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' | 'salto_ks_tag') | undefined;
|
|
86740
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
86671
86741
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
86672
86742
|
external_type_display_name?: string | undefined;
|
|
86673
86743
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -86797,7 +86867,7 @@ type Routes = {
|
|
|
86797
86867
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
86798
86868
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
86799
86869
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
86800
|
-
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' | 'salto_ks_tag') | undefined;
|
|
86870
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
86801
86871
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
86802
86872
|
external_type_display_name?: string | undefined;
|
|
86803
86873
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -86994,7 +87064,7 @@ type Routes = {
|
|
|
86994
87064
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
86995
87065
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
86996
87066
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
86997
|
-
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' | 'salto_ks_tag') | undefined;
|
|
87067
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
86998
87068
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
86999
87069
|
external_type_display_name?: string | undefined;
|
|
87000
87070
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -87124,7 +87194,7 @@ type Routes = {
|
|
|
87124
87194
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
87125
87195
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
87126
87196
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
87127
|
-
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' | 'salto_ks_tag') | undefined;
|
|
87197
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
87128
87198
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
87129
87199
|
external_type_display_name?: string | undefined;
|
|
87130
87200
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -88323,7 +88393,7 @@ type Routes = {
|
|
|
88323
88393
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
88324
88394
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
88325
88395
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
88326
|
-
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' | 'salto_ks_tag') | undefined;
|
|
88396
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
88327
88397
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
88328
88398
|
external_type_display_name?: string | undefined;
|
|
88329
88399
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -88611,7 +88681,7 @@ type Routes = {
|
|
|
88611
88681
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
88612
88682
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
88613
88683
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
88614
|
-
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' | 'salto_ks_tag') | undefined;
|
|
88684
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
88615
88685
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
88616
88686
|
external_type_display_name?: string | undefined;
|
|
88617
88687
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -88741,7 +88811,7 @@ type Routes = {
|
|
|
88741
88811
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
88742
88812
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
88743
88813
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
88744
|
-
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' | 'salto_ks_tag') | undefined;
|
|
88814
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
88745
88815
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
88746
88816
|
external_type_display_name?: string | undefined;
|
|
88747
88817
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -88938,7 +89008,7 @@ type Routes = {
|
|
|
88938
89008
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
88939
89009
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
88940
89010
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
88941
|
-
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' | 'salto_ks_tag') | undefined;
|
|
89011
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
88942
89012
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
88943
89013
|
external_type_display_name?: string | undefined;
|
|
88944
89014
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -89068,7 +89138,7 @@ type Routes = {
|
|
|
89068
89138
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
89069
89139
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
89070
89140
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
89071
|
-
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' | 'salto_ks_tag') | undefined;
|
|
89141
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
89072
89142
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
89073
89143
|
external_type_display_name?: string | undefined;
|
|
89074
89144
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -90275,7 +90345,7 @@ type Routes = {
|
|
|
90275
90345
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
90276
90346
|
display_name: string;
|
|
90277
90347
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90278
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
90348
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
90279
90349
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90280
90350
|
external_type_display_name?: string | undefined;
|
|
90281
90351
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -90550,7 +90620,7 @@ type Routes = {
|
|
|
90550
90620
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
90551
90621
|
display_name: string;
|
|
90552
90622
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90553
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
90623
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
90554
90624
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90555
90625
|
external_type_display_name?: string | undefined;
|
|
90556
90626
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -90813,7 +90883,7 @@ type Routes = {
|
|
|
90813
90883
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
90814
90884
|
display_name: string;
|
|
90815
90885
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90816
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
90886
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
90817
90887
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
90818
90888
|
external_type_display_name?: string | undefined;
|
|
90819
90889
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -91289,7 +91359,7 @@ type Routes = {
|
|
|
91289
91359
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
91290
91360
|
display_name: string;
|
|
91291
91361
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
91292
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
91362
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
91293
91363
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
91294
91364
|
external_type_display_name?: string | undefined;
|
|
91295
91365
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -91548,7 +91618,7 @@ type Routes = {
|
|
|
91548
91618
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
91549
91619
|
display_name: string;
|
|
91550
91620
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
91551
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
91621
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
91552
91622
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
91553
91623
|
external_type_display_name?: string | undefined;
|
|
91554
91624
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -92005,7 +92075,7 @@ type Routes = {
|
|
|
92005
92075
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92006
92076
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
92007
92077
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92008
|
-
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' | 'salto_ks_tag') | undefined;
|
|
92078
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
92009
92079
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
92010
92080
|
external_type_display_name?: string | undefined;
|
|
92011
92081
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -92135,7 +92205,7 @@ type Routes = {
|
|
|
92135
92205
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92136
92206
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
92137
92207
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92138
|
-
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' | 'salto_ks_tag') | undefined;
|
|
92208
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
92139
92209
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
92140
92210
|
external_type_display_name?: string | undefined;
|
|
92141
92211
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -92332,7 +92402,7 @@ type Routes = {
|
|
|
92332
92402
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92333
92403
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
92334
92404
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92335
|
-
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' | 'salto_ks_tag') | undefined;
|
|
92405
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
92336
92406
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
92337
92407
|
external_type_display_name?: string | undefined;
|
|
92338
92408
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -92462,7 +92532,7 @@ type Routes = {
|
|
|
92462
92532
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
92463
92533
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
92464
92534
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
92465
|
-
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' | 'salto_ks_tag') | undefined;
|
|
92535
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
92466
92536
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
92467
92537
|
external_type_display_name?: string | undefined;
|
|
92468
92538
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -93346,7 +93416,7 @@ type Routes = {
|
|
|
93346
93416
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93347
93417
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93348
93418
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93349
|
-
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' | 'salto_ks_tag') | undefined;
|
|
93419
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
93350
93420
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
93351
93421
|
external_type_display_name?: string | undefined;
|
|
93352
93422
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -93476,7 +93546,7 @@ type Routes = {
|
|
|
93476
93546
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93477
93547
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93478
93548
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93479
|
-
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' | 'salto_ks_tag') | undefined;
|
|
93549
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
93480
93550
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
93481
93551
|
external_type_display_name?: string | undefined;
|
|
93482
93552
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -93673,7 +93743,7 @@ type Routes = {
|
|
|
93673
93743
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93674
93744
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93675
93745
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93676
|
-
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' | 'salto_ks_tag') | undefined;
|
|
93746
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
93677
93747
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
93678
93748
|
external_type_display_name?: string | undefined;
|
|
93679
93749
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -93803,7 +93873,7 @@ type Routes = {
|
|
|
93803
93873
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
93804
93874
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93805
93875
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
93806
|
-
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' | 'salto_ks_tag') | undefined;
|
|
93876
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
93807
93877
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
93808
93878
|
external_type_display_name?: string | undefined;
|
|
93809
93879
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -95287,6 +95357,13 @@ type Routes = {
|
|
|
95287
95357
|
message: string;
|
|
95288
95358
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95289
95359
|
warning_code: 'being_deleted';
|
|
95360
|
+
} | {
|
|
95361
|
+
/** Date and time at which Seam created the warning. */
|
|
95362
|
+
created_at: string;
|
|
95363
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95364
|
+
message: string;
|
|
95365
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95366
|
+
warning_code: 'provider_service_unavailable';
|
|
95290
95367
|
})[];
|
|
95291
95368
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
95292
95369
|
custom_metadata: {
|
|
@@ -95453,6 +95530,13 @@ type Routes = {
|
|
|
95453
95530
|
message: string;
|
|
95454
95531
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95455
95532
|
warning_code: 'being_deleted';
|
|
95533
|
+
} | {
|
|
95534
|
+
/** Date and time at which Seam created the warning. */
|
|
95535
|
+
created_at: string;
|
|
95536
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95537
|
+
message: string;
|
|
95538
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95539
|
+
warning_code: 'provider_service_unavailable';
|
|
95456
95540
|
})[];
|
|
95457
95541
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
95458
95542
|
custom_metadata: {
|
|
@@ -95651,6 +95735,13 @@ type Routes = {
|
|
|
95651
95735
|
message: string;
|
|
95652
95736
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95653
95737
|
warning_code: 'being_deleted';
|
|
95738
|
+
} | {
|
|
95739
|
+
/** Date and time at which Seam created the warning. */
|
|
95740
|
+
created_at: string;
|
|
95741
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
95742
|
+
message: string;
|
|
95743
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
95744
|
+
warning_code: 'provider_service_unavailable';
|
|
95654
95745
|
})[];
|
|
95655
95746
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
95656
95747
|
custom_metadata: {
|
|
@@ -106320,7 +106411,7 @@ type Routes = {
|
|
|
106320
106411
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
106321
106412
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
106322
106413
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
106323
|
-
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' | 'salto_ks_tag') | undefined;
|
|
106414
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
106324
106415
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
106325
106416
|
external_type_display_name?: string | undefined;
|
|
106326
106417
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -106450,7 +106541,7 @@ type Routes = {
|
|
|
106450
106541
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
106451
106542
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
106452
106543
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
106453
|
-
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' | 'salto_ks_tag') | undefined;
|
|
106544
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
106454
106545
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
106455
106546
|
external_type_display_name?: string | undefined;
|
|
106456
106547
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -106647,7 +106738,7 @@ type Routes = {
|
|
|
106647
106738
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
106648
106739
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
106649
106740
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
106650
|
-
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' | 'salto_ks_tag') | undefined;
|
|
106741
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
106651
106742
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
106652
106743
|
external_type_display_name?: string | undefined;
|
|
106653
106744
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -106777,7 +106868,7 @@ type Routes = {
|
|
|
106777
106868
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
106778
106869
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
106779
106870
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
106780
|
-
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' | 'salto_ks_tag') | undefined;
|
|
106871
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
106781
106872
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
106782
106873
|
external_type_display_name?: string | undefined;
|
|
106783
106874
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -113063,7 +113154,7 @@ type Routes = {
|
|
|
113063
113154
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
113064
113155
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
113065
113156
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
113066
|
-
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' | 'salto_ks_tag') | undefined;
|
|
113157
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
113067
113158
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
113068
113159
|
external_type_display_name?: string | undefined;
|
|
113069
113160
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -113193,7 +113284,7 @@ type Routes = {
|
|
|
113193
113284
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
113194
113285
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
113195
113286
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
113196
|
-
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' | 'salto_ks_tag') | undefined;
|
|
113287
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
113197
113288
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
113198
113289
|
external_type_display_name?: string | undefined;
|
|
113199
113290
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -113390,7 +113481,7 @@ type Routes = {
|
|
|
113390
113481
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
113391
113482
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
113392
113483
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
113393
|
-
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' | 'salto_ks_tag') | undefined;
|
|
113484
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
113394
113485
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
113395
113486
|
external_type_display_name?: string | undefined;
|
|
113396
113487
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -113520,7 +113611,7 @@ type Routes = {
|
|
|
113520
113611
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
113521
113612
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
113522
113613
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
113523
|
-
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' | 'salto_ks_tag') | undefined;
|
|
113614
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
113524
113615
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
113525
113616
|
external_type_display_name?: string | undefined;
|
|
113526
113617
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -114405,7 +114496,7 @@ type Routes = {
|
|
|
114405
114496
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
114406
114497
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
114407
114498
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
114408
|
-
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' | 'salto_ks_tag') | undefined;
|
|
114499
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
114409
114500
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
114410
114501
|
external_type_display_name?: string | undefined;
|
|
114411
114502
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -114535,7 +114626,7 @@ type Routes = {
|
|
|
114535
114626
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
114536
114627
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
114537
114628
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
114538
|
-
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' | 'salto_ks_tag') | undefined;
|
|
114629
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
114539
114630
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
114540
114631
|
external_type_display_name?: string | undefined;
|
|
114541
114632
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -114732,7 +114823,7 @@ type Routes = {
|
|
|
114732
114823
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
114733
114824
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
114734
114825
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
114735
|
-
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' | 'salto_ks_tag') | undefined;
|
|
114826
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
114736
114827
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
114737
114828
|
external_type_display_name?: string | undefined;
|
|
114738
114829
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -114862,7 +114953,7 @@ type Routes = {
|
|
|
114862
114953
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
114863
114954
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
114864
114955
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
114865
|
-
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' | 'salto_ks_tag') | undefined;
|
|
114956
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
114866
114957
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
114867
114958
|
external_type_display_name?: string | undefined;
|
|
114868
114959
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -115745,7 +115836,7 @@ type Routes = {
|
|
|
115745
115836
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
115746
115837
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
115747
115838
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
115748
|
-
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' | 'salto_ks_tag') | undefined;
|
|
115839
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
115749
115840
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
115750
115841
|
external_type_display_name?: string | undefined;
|
|
115751
115842
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -115875,7 +115966,7 @@ type Routes = {
|
|
|
115875
115966
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
115876
115967
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
115877
115968
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
115878
|
-
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' | 'salto_ks_tag') | undefined;
|
|
115969
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
115879
115970
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
115880
115971
|
external_type_display_name?: string | undefined;
|
|
115881
115972
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -116072,7 +116163,7 @@ type Routes = {
|
|
|
116072
116163
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
116073
116164
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
116074
116165
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
116075
|
-
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' | 'salto_ks_tag') | undefined;
|
|
116166
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
116076
116167
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
116077
116168
|
external_type_display_name?: string | undefined;
|
|
116078
116169
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -116202,7 +116293,7 @@ type Routes = {
|
|
|
116202
116293
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
116203
116294
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
116204
116295
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
116205
|
-
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' | 'salto_ks_tag') | undefined;
|
|
116296
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
116206
116297
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
116207
116298
|
external_type_display_name?: string | undefined;
|
|
116208
116299
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -117087,7 +117178,7 @@ type Routes = {
|
|
|
117087
117178
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
117088
117179
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
117089
117180
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
117090
|
-
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' | 'salto_ks_tag') | undefined;
|
|
117181
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
117091
117182
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
117092
117183
|
external_type_display_name?: string | undefined;
|
|
117093
117184
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -117217,7 +117308,7 @@ type Routes = {
|
|
|
117217
117308
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
117218
117309
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
117219
117310
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
117220
|
-
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' | 'salto_ks_tag') | undefined;
|
|
117311
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
117221
117312
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
117222
117313
|
external_type_display_name?: string | undefined;
|
|
117223
117314
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -117414,7 +117505,7 @@ type Routes = {
|
|
|
117414
117505
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
117415
117506
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
117416
117507
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
117417
|
-
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' | 'salto_ks_tag') | undefined;
|
|
117508
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
117418
117509
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
117419
117510
|
external_type_display_name?: string | undefined;
|
|
117420
117511
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -117544,7 +117635,7 @@ type Routes = {
|
|
|
117544
117635
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
117545
117636
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
117546
117637
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
117547
|
-
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' | 'salto_ks_tag') | undefined;
|
|
117638
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
117548
117639
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
117549
117640
|
external_type_display_name?: string | undefined;
|
|
117550
117641
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -121156,7 +121247,7 @@ type Routes = {
|
|
|
121156
121247
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
121157
121248
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
121158
121249
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
121159
|
-
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' | 'salto_ks_tag') | undefined;
|
|
121250
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
121160
121251
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
121161
121252
|
external_type_display_name?: string | undefined;
|
|
121162
121253
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -121286,7 +121377,7 @@ type Routes = {
|
|
|
121286
121377
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
121287
121378
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
121288
121379
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
121289
|
-
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' | 'salto_ks_tag') | undefined;
|
|
121380
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
121290
121381
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
121291
121382
|
external_type_display_name?: string | undefined;
|
|
121292
121383
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -121483,7 +121574,7 @@ type Routes = {
|
|
|
121483
121574
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
121484
121575
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
121485
121576
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
121486
|
-
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' | 'salto_ks_tag') | undefined;
|
|
121577
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
121487
121578
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
121488
121579
|
external_type_display_name?: string | undefined;
|
|
121489
121580
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -121613,7 +121704,7 @@ type Routes = {
|
|
|
121613
121704
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
121614
121705
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
121615
121706
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
121616
|
-
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' | 'salto_ks_tag') | undefined;
|
|
121707
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
121617
121708
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
121618
121709
|
external_type_display_name?: string | undefined;
|
|
121619
121710
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -122517,7 +122608,7 @@ type Routes = {
|
|
|
122517
122608
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
122518
122609
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
122519
122610
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
122520
|
-
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' | 'salto_ks_tag') | undefined;
|
|
122611
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
122521
122612
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
122522
122613
|
external_type_display_name?: string | undefined;
|
|
122523
122614
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -122647,7 +122738,7 @@ type Routes = {
|
|
|
122647
122738
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
122648
122739
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
122649
122740
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
122650
|
-
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' | 'salto_ks_tag') | undefined;
|
|
122741
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
122651
122742
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
122652
122743
|
external_type_display_name?: string | undefined;
|
|
122653
122744
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -122844,7 +122935,7 @@ type Routes = {
|
|
|
122844
122935
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
122845
122936
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
122846
122937
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
122847
|
-
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' | 'salto_ks_tag') | undefined;
|
|
122938
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
122848
122939
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
122849
122940
|
external_type_display_name?: string | undefined;
|
|
122850
122941
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -122974,7 +123065,7 @@ type Routes = {
|
|
|
122974
123065
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
122975
123066
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
122976
123067
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
122977
|
-
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' | 'salto_ks_tag') | undefined;
|
|
123068
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
122978
123069
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
122979
123070
|
external_type_display_name?: string | undefined;
|
|
122980
123071
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -123934,7 +124025,7 @@ type Routes = {
|
|
|
123934
124025
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
123935
124026
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
123936
124027
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
123937
|
-
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' | 'salto_ks_tag') | undefined;
|
|
124028
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
123938
124029
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
123939
124030
|
external_type_display_name?: string | undefined;
|
|
123940
124031
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -124064,7 +124155,7 @@ type Routes = {
|
|
|
124064
124155
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
124065
124156
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
124066
124157
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
124067
|
-
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' | 'salto_ks_tag') | undefined;
|
|
124158
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
124068
124159
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
124069
124160
|
external_type_display_name?: string | undefined;
|
|
124070
124161
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -124261,7 +124352,7 @@ type Routes = {
|
|
|
124261
124352
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
124262
124353
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
124263
124354
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
124264
|
-
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' | 'salto_ks_tag') | undefined;
|
|
124355
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
124265
124356
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
124266
124357
|
external_type_display_name?: string | undefined;
|
|
124267
124358
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -124391,7 +124482,7 @@ type Routes = {
|
|
|
124391
124482
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
124392
124483
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
124393
124484
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
124394
|
-
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' | 'salto_ks_tag') | undefined;
|
|
124485
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
124395
124486
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
124396
124487
|
external_type_display_name?: string | undefined;
|
|
124397
124488
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -126324,7 +126415,7 @@ type Routes = {
|
|
|
126324
126415
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
126325
126416
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
126326
126417
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
126327
|
-
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' | 'salto_ks_tag') | undefined;
|
|
126418
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
126328
126419
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
126329
126420
|
external_type_display_name?: string | undefined;
|
|
126330
126421
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -126454,7 +126545,7 @@ type Routes = {
|
|
|
126454
126545
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
126455
126546
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
126456
126547
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
126457
|
-
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' | 'salto_ks_tag') | undefined;
|
|
126548
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
126458
126549
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
126459
126550
|
external_type_display_name?: string | undefined;
|
|
126460
126551
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -126651,7 +126742,7 @@ type Routes = {
|
|
|
126651
126742
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
126652
126743
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
126653
126744
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
126654
|
-
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' | 'salto_ks_tag') | undefined;
|
|
126745
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
126655
126746
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
126656
126747
|
external_type_display_name?: string | undefined;
|
|
126657
126748
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -126781,7 +126872,7 @@ type Routes = {
|
|
|
126781
126872
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
126782
126873
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
126783
126874
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
126784
|
-
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' | 'salto_ks_tag') | undefined;
|
|
126875
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
126785
126876
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
126786
126877
|
external_type_display_name?: string | undefined;
|
|
126787
126878
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -132371,7 +132462,7 @@ type Routes = {
|
|
|
132371
132462
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
132372
132463
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
132373
132464
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
132374
|
-
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' | 'salto_ks_tag') | undefined;
|
|
132465
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
132375
132466
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
132376
132467
|
external_type_display_name?: string | undefined;
|
|
132377
132468
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -132538,7 +132629,7 @@ type Routes = {
|
|
|
132538
132629
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
132539
132630
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
132540
132631
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
132541
|
-
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' | 'salto_ks_tag') | undefined;
|
|
132632
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
132542
132633
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
132543
132634
|
external_type_display_name?: string | undefined;
|
|
132544
132635
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -134729,6 +134820,13 @@ type Routes = {
|
|
|
134729
134820
|
message: string;
|
|
134730
134821
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134731
134822
|
warning_code: 'being_deleted';
|
|
134823
|
+
} | {
|
|
134824
|
+
/** Date and time at which Seam created the warning. */
|
|
134825
|
+
created_at: string;
|
|
134826
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
134827
|
+
message: string;
|
|
134828
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134829
|
+
warning_code: 'provider_service_unavailable';
|
|
134732
134830
|
})[];
|
|
134733
134831
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
134734
134832
|
custom_metadata: {
|
|
@@ -135334,7 +135432,7 @@ type Routes = {
|
|
|
135334
135432
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135335
135433
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135336
135434
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135337
|
-
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' | 'salto_ks_tag') | undefined;
|
|
135435
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
135338
135436
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135339
135437
|
external_type_display_name?: string | undefined;
|
|
135340
135438
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135464,7 +135562,7 @@ type Routes = {
|
|
|
135464
135562
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135465
135563
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135466
135564
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135467
|
-
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' | 'salto_ks_tag') | undefined;
|
|
135565
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
135468
135566
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135469
135567
|
external_type_display_name?: string | undefined;
|
|
135470
135568
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135661,7 +135759,7 @@ type Routes = {
|
|
|
135661
135759
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135662
135760
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135663
135761
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135664
|
-
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' | 'salto_ks_tag') | undefined;
|
|
135762
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
135665
135763
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135666
135764
|
external_type_display_name?: string | undefined;
|
|
135667
135765
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -135791,7 +135889,7 @@ type Routes = {
|
|
|
135791
135889
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
135792
135890
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
135793
135891
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
135794
|
-
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' | 'salto_ks_tag') | undefined;
|
|
135892
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
135795
135893
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
135796
135894
|
external_type_display_name?: string | undefined;
|
|
135797
135895
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -136680,7 +136778,7 @@ type Routes = {
|
|
|
136680
136778
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
136681
136779
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
136682
136780
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
136683
|
-
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' | 'salto_ks_tag') | undefined;
|
|
136781
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
136684
136782
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
136685
136783
|
external_type_display_name?: string | undefined;
|
|
136686
136784
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -136810,7 +136908,7 @@ type Routes = {
|
|
|
136810
136908
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
136811
136909
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
136812
136910
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
136813
|
-
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' | 'salto_ks_tag') | undefined;
|
|
136911
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
136814
136912
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
136815
136913
|
external_type_display_name?: string | undefined;
|
|
136816
136914
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -137007,7 +137105,7 @@ type Routes = {
|
|
|
137007
137105
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
137008
137106
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
137009
137107
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
137010
|
-
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' | 'salto_ks_tag') | undefined;
|
|
137108
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
137011
137109
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
137012
137110
|
external_type_display_name?: string | undefined;
|
|
137013
137111
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -137137,7 +137235,7 @@ type Routes = {
|
|
|
137137
137235
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
137138
137236
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
137139
137237
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
137140
|
-
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' | 'salto_ks_tag') | undefined;
|
|
137238
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
137141
137239
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
137142
137240
|
external_type_display_name?: string | undefined;
|
|
137143
137241
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -138132,7 +138230,7 @@ type Routes = {
|
|
|
138132
138230
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
138133
138231
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
138134
138232
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
138135
|
-
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' | 'salto_ks_tag') | undefined;
|
|
138233
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
138136
138234
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
138137
138235
|
external_type_display_name?: string | undefined;
|
|
138138
138236
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -138262,7 +138360,7 @@ type Routes = {
|
|
|
138262
138360
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
138263
138361
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
138264
138362
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
138265
|
-
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' | 'salto_ks_tag') | undefined;
|
|
138363
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
138266
138364
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
138267
138365
|
external_type_display_name?: string | undefined;
|
|
138268
138366
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -138459,7 +138557,7 @@ type Routes = {
|
|
|
138459
138557
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
138460
138558
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
138461
138559
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
138462
|
-
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' | 'salto_ks_tag') | undefined;
|
|
138560
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
138463
138561
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
138464
138562
|
external_type_display_name?: string | undefined;
|
|
138465
138563
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -138589,7 +138687,7 @@ type Routes = {
|
|
|
138589
138687
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
138590
138688
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
138591
138689
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
138592
|
-
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' | 'salto_ks_tag') | undefined;
|
|
138690
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
138593
138691
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
138594
138692
|
external_type_display_name?: string | undefined;
|
|
138595
138693
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -140843,7 +140941,7 @@ type Routes = {
|
|
|
140843
140941
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
140844
140942
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
140845
140943
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
140846
|
-
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' | 'salto_ks_tag') | undefined;
|
|
140944
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
140847
140945
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
140848
140946
|
external_type_display_name?: string | undefined;
|
|
140849
140947
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -140973,7 +141071,7 @@ type Routes = {
|
|
|
140973
141071
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
140974
141072
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
140975
141073
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
140976
|
-
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' | 'salto_ks_tag') | undefined;
|
|
141074
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
140977
141075
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
140978
141076
|
external_type_display_name?: string | undefined;
|
|
140979
141077
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -141170,7 +141268,7 @@ type Routes = {
|
|
|
141170
141268
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
141171
141269
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
141172
141270
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141173
|
-
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' | 'salto_ks_tag') | undefined;
|
|
141271
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
141174
141272
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
141175
141273
|
external_type_display_name?: string | undefined;
|
|
141176
141274
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -141300,7 +141398,7 @@ type Routes = {
|
|
|
141300
141398
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
141301
141399
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
141302
141400
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141303
|
-
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' | 'salto_ks_tag') | undefined;
|
|
141401
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
141304
141402
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
141305
141403
|
external_type_display_name?: string | undefined;
|
|
141306
141404
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -142193,7 +142291,7 @@ type Routes = {
|
|
|
142193
142291
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
142194
142292
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
142195
142293
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
142196
|
-
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' | 'salto_ks_tag') | undefined;
|
|
142294
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
142197
142295
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
142198
142296
|
external_type_display_name?: string | undefined;
|
|
142199
142297
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -142323,7 +142421,7 @@ type Routes = {
|
|
|
142323
142421
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
142324
142422
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
142325
142423
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
142326
|
-
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' | 'salto_ks_tag') | undefined;
|
|
142424
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
142327
142425
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
142328
142426
|
external_type_display_name?: string | undefined;
|
|
142329
142427
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -142520,7 +142618,7 @@ type Routes = {
|
|
|
142520
142618
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
142521
142619
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
142522
142620
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
142523
|
-
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' | 'salto_ks_tag') | undefined;
|
|
142621
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
142524
142622
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
142525
142623
|
external_type_display_name?: string | undefined;
|
|
142526
142624
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -142650,7 +142748,7 @@ type Routes = {
|
|
|
142650
142748
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
142651
142749
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
142652
142750
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
142653
|
-
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' | 'salto_ks_tag') | undefined;
|
|
142751
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
142654
142752
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
142655
142753
|
external_type_display_name?: string | undefined;
|
|
142656
142754
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146252,7 +146350,7 @@ type Routes = {
|
|
|
146252
146350
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146253
146351
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146254
146352
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146255
|
-
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' | 'salto_ks_tag') | undefined;
|
|
146353
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
146256
146354
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146257
146355
|
external_type_display_name?: string | undefined;
|
|
146258
146356
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146382,7 +146480,7 @@ type Routes = {
|
|
|
146382
146480
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146383
146481
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146384
146482
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146385
|
-
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' | 'salto_ks_tag') | undefined;
|
|
146483
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
146386
146484
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146387
146485
|
external_type_display_name?: string | undefined;
|
|
146388
146486
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146579,7 +146677,7 @@ type Routes = {
|
|
|
146579
146677
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146580
146678
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146581
146679
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146582
|
-
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' | 'salto_ks_tag') | undefined;
|
|
146680
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
146583
146681
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146584
146682
|
external_type_display_name?: string | undefined;
|
|
146585
146683
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -146709,7 +146807,7 @@ type Routes = {
|
|
|
146709
146807
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
146710
146808
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
146711
146809
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
146712
|
-
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' | 'salto_ks_tag') | undefined;
|
|
146810
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
146713
146811
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
146714
146812
|
external_type_display_name?: string | undefined;
|
|
146715
146813
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -147797,7 +147895,7 @@ type Routes = {
|
|
|
147797
147895
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
147798
147896
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
147799
147897
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
147800
|
-
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' | 'salto_ks_tag') | undefined;
|
|
147898
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
147801
147899
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
147802
147900
|
external_type_display_name?: string | undefined;
|
|
147803
147901
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -147927,7 +148025,7 @@ type Routes = {
|
|
|
147927
148025
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
147928
148026
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
147929
148027
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
147930
|
-
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' | 'salto_ks_tag') | undefined;
|
|
148028
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
147931
148029
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
147932
148030
|
external_type_display_name?: string | undefined;
|
|
147933
148031
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -148124,7 +148222,7 @@ type Routes = {
|
|
|
148124
148222
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
148125
148223
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
148126
148224
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
148127
|
-
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' | 'salto_ks_tag') | undefined;
|
|
148225
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
148128
148226
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
148129
148227
|
external_type_display_name?: string | undefined;
|
|
148130
148228
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -148254,7 +148352,7 @@ type Routes = {
|
|
|
148254
148352
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
148255
148353
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
148256
148354
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
148257
|
-
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' | 'salto_ks_tag') | undefined;
|
|
148355
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
148258
148356
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
148259
148357
|
external_type_display_name?: string | undefined;
|
|
148260
148358
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -149170,7 +149268,7 @@ type Routes = {
|
|
|
149170
149268
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
149171
149269
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
149172
149270
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
149173
|
-
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' | 'salto_ks_tag') | undefined;
|
|
149271
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
149174
149272
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
149175
149273
|
external_type_display_name?: string | undefined;
|
|
149176
149274
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -149300,7 +149398,7 @@ type Routes = {
|
|
|
149300
149398
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
149301
149399
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
149302
149400
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
149303
|
-
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' | 'salto_ks_tag') | undefined;
|
|
149401
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
149304
149402
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
149305
149403
|
external_type_display_name?: string | undefined;
|
|
149306
149404
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -149497,7 +149595,7 @@ type Routes = {
|
|
|
149497
149595
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
149498
149596
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
149499
149597
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
149500
|
-
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' | 'salto_ks_tag') | undefined;
|
|
149598
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
149501
149599
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
149502
149600
|
external_type_display_name?: string | undefined;
|
|
149503
149601
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -149627,7 +149725,7 @@ type Routes = {
|
|
|
149627
149725
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
149628
149726
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
149629
149727
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
149630
|
-
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' | 'salto_ks_tag') | undefined;
|
|
149728
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
149631
149729
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
149632
149730
|
external_type_display_name?: string | undefined;
|
|
149633
149731
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -150655,7 +150753,7 @@ type Routes = {
|
|
|
150655
150753
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150656
150754
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150657
150755
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
150658
|
-
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' | 'salto_ks_tag') | undefined;
|
|
150756
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
150659
150757
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
150660
150758
|
external_type_display_name?: string | undefined;
|
|
150661
150759
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -150785,7 +150883,7 @@ type Routes = {
|
|
|
150785
150883
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150786
150884
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150787
150885
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
150788
|
-
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' | 'salto_ks_tag') | undefined;
|
|
150886
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
150789
150887
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
150790
150888
|
external_type_display_name?: string | undefined;
|
|
150791
150889
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -150982,7 +151080,7 @@ type Routes = {
|
|
|
150982
151080
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
150983
151081
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
150984
151082
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
150985
|
-
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' | 'salto_ks_tag') | undefined;
|
|
151083
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
150986
151084
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
150987
151085
|
external_type_display_name?: string | undefined;
|
|
150988
151086
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -151112,7 +151210,7 @@ type Routes = {
|
|
|
151112
151210
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
151113
151211
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
151114
151212
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
151115
|
-
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' | 'salto_ks_tag') | undefined;
|
|
151213
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
151116
151214
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
151117
151215
|
external_type_display_name?: string | undefined;
|
|
151118
151216
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -155365,7 +155463,7 @@ type Routes = {
|
|
|
155365
155463
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
155366
155464
|
display_name: string;
|
|
155367
155465
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
155368
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
155466
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
155369
155467
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
155370
155468
|
external_type_display_name?: string | undefined;
|
|
155371
155469
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -157798,7 +157896,7 @@ type Routes = {
|
|
|
157798
157896
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
157799
157897
|
display_name: string;
|
|
157800
157898
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
157801
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
157899
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
157802
157900
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
157803
157901
|
external_type_display_name?: string | undefined;
|
|
157804
157902
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -158372,7 +158470,7 @@ type Routes = {
|
|
|
158372
158470
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158373
158471
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158374
158472
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158375
|
-
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' | 'salto_ks_tag') | undefined;
|
|
158473
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
158376
158474
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158377
158475
|
external_type_display_name?: string | undefined;
|
|
158378
158476
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158502,7 +158600,7 @@ type Routes = {
|
|
|
158502
158600
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158503
158601
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158504
158602
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158505
|
-
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' | 'salto_ks_tag') | undefined;
|
|
158603
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
158506
158604
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158507
158605
|
external_type_display_name?: string | undefined;
|
|
158508
158606
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158699,7 +158797,7 @@ type Routes = {
|
|
|
158699
158797
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158700
158798
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158701
158799
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158702
|
-
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' | 'salto_ks_tag') | undefined;
|
|
158800
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
158703
158801
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158704
158802
|
external_type_display_name?: string | undefined;
|
|
158705
158803
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -158829,7 +158927,7 @@ type Routes = {
|
|
|
158829
158927
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
158830
158928
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
158831
158929
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
158832
|
-
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' | 'salto_ks_tag') | undefined;
|
|
158930
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
158833
158931
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
158834
158932
|
external_type_display_name?: string | undefined;
|
|
158835
158933
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -159568,7 +159666,7 @@ type Routes = {
|
|
|
159568
159666
|
/** Display name for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
159569
159667
|
display_name: string;
|
|
159570
159668
|
/** Brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
159571
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user') | undefined;
|
|
159669
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user' | 'salto_space_user' | 'avigilon_alta_user') | undefined;
|
|
159572
159670
|
/** Display name that corresponds to the brand-specific terminology for the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) type. */
|
|
159573
159671
|
external_type_display_name?: string | undefined;
|
|
159574
159672
|
/** Indicates whether the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -160889,6 +160987,13 @@ type Routes = {
|
|
|
160889
160987
|
message: string;
|
|
160890
160988
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
160891
160989
|
warning_code: 'being_deleted';
|
|
160990
|
+
} | {
|
|
160991
|
+
/** Date and time at which Seam created the warning. */
|
|
160992
|
+
created_at: string;
|
|
160993
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
160994
|
+
message: string;
|
|
160995
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
160996
|
+
warning_code: 'provider_service_unavailable';
|
|
160892
160997
|
})[];
|
|
160893
160998
|
/** Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application. */
|
|
160894
160999
|
custom_metadata: {
|
|
@@ -163734,7 +163839,7 @@ type Routes = {
|
|
|
163734
163839
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
163735
163840
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
163736
163841
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
163737
|
-
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' | 'salto_ks_tag') | undefined;
|
|
163842
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
163738
163843
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
163739
163844
|
external_type_display_name?: string | undefined;
|
|
163740
163845
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -163865,7 +163970,7 @@ type Routes = {
|
|
|
163865
163970
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
163866
163971
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
163867
163972
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
163868
|
-
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' | 'salto_ks_tag') | undefined;
|
|
163973
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
163869
163974
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
163870
163975
|
external_type_display_name?: string | undefined;
|
|
163871
163976
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -165415,7 +165520,7 @@ type Routes = {
|
|
|
165415
165520
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
165416
165521
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
165417
165522
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
165418
|
-
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' | 'salto_ks_tag') | undefined;
|
|
165523
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
165419
165524
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
165420
165525
|
external_type_display_name?: string | undefined;
|
|
165421
165526
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -165545,7 +165650,7 @@ type Routes = {
|
|
|
165545
165650
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
165546
165651
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
165547
165652
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
165548
|
-
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' | 'salto_ks_tag') | undefined;
|
|
165653
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
165549
165654
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
165550
165655
|
external_type_display_name?: string | undefined;
|
|
165551
165656
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -165742,7 +165847,7 @@ type Routes = {
|
|
|
165742
165847
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
165743
165848
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
165744
165849
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
165745
|
-
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' | 'salto_ks_tag') | undefined;
|
|
165850
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
165746
165851
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
165747
165852
|
external_type_display_name?: string | undefined;
|
|
165748
165853
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -165872,7 +165977,7 @@ type Routes = {
|
|
|
165872
165977
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
165873
165978
|
access_method: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
165874
165979
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
165875
|
-
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' | 'salto_ks_tag') | undefined;
|
|
165980
|
+
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' | 'salto_ks_tag' | 'avigilon_alta_credential') | undefined;
|
|
165876
165981
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
165877
165982
|
external_type_display_name?: string | undefined;
|
|
165878
165983
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|