@seamapi/types 1.747.0 → 1.749.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +185 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +801 -537
- package/dist/index.cjs +185 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +81 -0
- package/lib/seam/connect/models/access-grants/access-method.js +16 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.js +3 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/batch.d.ts +120 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +140 -10
- package/lib/seam/connect/openapi.js +169 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +455 -383
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +21 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +194 -16
- package/src/lib/seam/connect/route-types.ts +695 -256
|
@@ -6887,8 +6887,8 @@ export declare const batch: z.ZodObject<{
|
|
|
6887
6887
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6888
6888
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
6889
6889
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6890
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
6891
|
-
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"]>>;
|
|
6890
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
6891
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
6892
6892
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
6893
6893
|
created_at: z.ZodString;
|
|
6894
6894
|
workspace_id: z.ZodString;
|
|
@@ -7075,7 +7075,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7075
7075
|
is_managed: true;
|
|
7076
7076
|
acs_system_id: string;
|
|
7077
7077
|
acs_credential_id: string;
|
|
7078
|
-
access_method: "code" | "card" | "mobile_key";
|
|
7078
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
7079
7079
|
code?: string | null | undefined;
|
|
7080
7080
|
starts_at?: string | undefined;
|
|
7081
7081
|
ends_at?: string | undefined;
|
|
@@ -7102,7 +7102,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7102
7102
|
issued_at?: string | null | undefined;
|
|
7103
7103
|
is_issued?: boolean | undefined;
|
|
7104
7104
|
acs_user_id?: string | undefined;
|
|
7105
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7105
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7106
7106
|
external_type_display_name?: string | undefined;
|
|
7107
7107
|
acs_credential_pool_id?: string | undefined;
|
|
7108
7108
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7147,7 +7147,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7147
7147
|
is_managed: true;
|
|
7148
7148
|
acs_system_id: string;
|
|
7149
7149
|
acs_credential_id: string;
|
|
7150
|
-
access_method: "code" | "card" | "mobile_key";
|
|
7150
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
7151
7151
|
code?: string | null | undefined;
|
|
7152
7152
|
starts_at?: string | undefined;
|
|
7153
7153
|
ends_at?: string | undefined;
|
|
@@ -7174,7 +7174,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7174
7174
|
issued_at?: string | null | undefined;
|
|
7175
7175
|
is_issued?: boolean | undefined;
|
|
7176
7176
|
acs_user_id?: string | undefined;
|
|
7177
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7177
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7178
7178
|
external_type_display_name?: string | undefined;
|
|
7179
7179
|
acs_credential_pool_id?: string | undefined;
|
|
7180
7180
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7197,8 +7197,8 @@ export declare const batch: z.ZodObject<{
|
|
|
7197
7197
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7198
7198
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7199
7199
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7200
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
7201
|
-
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"]>>;
|
|
7200
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7201
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
7202
7202
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7203
7203
|
created_at: z.ZodString;
|
|
7204
7204
|
workspace_id: z.ZodString;
|
|
@@ -7385,7 +7385,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7385
7385
|
is_managed: false;
|
|
7386
7386
|
acs_system_id: string;
|
|
7387
7387
|
acs_credential_id: string;
|
|
7388
|
-
access_method: "code" | "card" | "mobile_key";
|
|
7388
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
7389
7389
|
code?: string | null | undefined;
|
|
7390
7390
|
starts_at?: string | undefined;
|
|
7391
7391
|
ends_at?: string | undefined;
|
|
@@ -7412,7 +7412,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7412
7412
|
issued_at?: string | null | undefined;
|
|
7413
7413
|
is_issued?: boolean | undefined;
|
|
7414
7414
|
acs_user_id?: string | undefined;
|
|
7415
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7415
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7416
7416
|
external_type_display_name?: string | undefined;
|
|
7417
7417
|
acs_credential_pool_id?: string | undefined;
|
|
7418
7418
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7457,7 +7457,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7457
7457
|
is_managed: false;
|
|
7458
7458
|
acs_system_id: string;
|
|
7459
7459
|
acs_credential_id: string;
|
|
7460
|
-
access_method: "code" | "card" | "mobile_key";
|
|
7460
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
7461
7461
|
code?: string | null | undefined;
|
|
7462
7462
|
starts_at?: string | undefined;
|
|
7463
7463
|
ends_at?: string | undefined;
|
|
@@ -7484,7 +7484,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7484
7484
|
issued_at?: string | null | undefined;
|
|
7485
7485
|
is_issued?: boolean | undefined;
|
|
7486
7486
|
acs_user_id?: string | undefined;
|
|
7487
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7487
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
7488
7488
|
external_type_display_name?: string | undefined;
|
|
7489
7489
|
acs_credential_pool_id?: string | undefined;
|
|
7490
7490
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7792,8 +7792,8 @@ export declare const batch: z.ZodObject<{
|
|
|
7792
7792
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7793
7793
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7794
7794
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7795
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
7796
|
-
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"]>>;
|
|
7795
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7796
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
7797
7797
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7798
7798
|
created_at: z.ZodString;
|
|
7799
7799
|
workspace_id: z.ZodString;
|
|
@@ -7980,7 +7980,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7980
7980
|
is_managed: true;
|
|
7981
7981
|
acs_system_id: string;
|
|
7982
7982
|
acs_credential_id: string;
|
|
7983
|
-
access_method: "code" | "card" | "mobile_key";
|
|
7983
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
7984
7984
|
code?: string | null | undefined;
|
|
7985
7985
|
starts_at?: string | undefined;
|
|
7986
7986
|
ends_at?: string | undefined;
|
|
@@ -8007,7 +8007,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8007
8007
|
issued_at?: string | null | undefined;
|
|
8008
8008
|
is_issued?: boolean | undefined;
|
|
8009
8009
|
acs_user_id?: string | undefined;
|
|
8010
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8010
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8011
8011
|
external_type_display_name?: string | undefined;
|
|
8012
8012
|
acs_credential_pool_id?: string | undefined;
|
|
8013
8013
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8052,7 +8052,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8052
8052
|
is_managed: true;
|
|
8053
8053
|
acs_system_id: string;
|
|
8054
8054
|
acs_credential_id: string;
|
|
8055
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8055
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8056
8056
|
code?: string | null | undefined;
|
|
8057
8057
|
starts_at?: string | undefined;
|
|
8058
8058
|
ends_at?: string | undefined;
|
|
@@ -8079,7 +8079,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8079
8079
|
issued_at?: string | null | undefined;
|
|
8080
8080
|
is_issued?: boolean | undefined;
|
|
8081
8081
|
acs_user_id?: string | undefined;
|
|
8082
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8082
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8083
8083
|
external_type_display_name?: string | undefined;
|
|
8084
8084
|
acs_credential_pool_id?: string | undefined;
|
|
8085
8085
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8101,8 +8101,8 @@ export declare const batch: z.ZodObject<{
|
|
|
8101
8101
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8102
8102
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8103
8103
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8104
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
8105
|
-
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"]>>;
|
|
8104
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8105
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
8106
8106
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8107
8107
|
created_at: z.ZodString;
|
|
8108
8108
|
workspace_id: z.ZodString;
|
|
@@ -8289,7 +8289,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8289
8289
|
is_managed: false;
|
|
8290
8290
|
acs_system_id: string;
|
|
8291
8291
|
acs_credential_id: string;
|
|
8292
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8292
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8293
8293
|
code?: string | null | undefined;
|
|
8294
8294
|
starts_at?: string | undefined;
|
|
8295
8295
|
ends_at?: string | undefined;
|
|
@@ -8316,7 +8316,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8316
8316
|
issued_at?: string | null | undefined;
|
|
8317
8317
|
is_issued?: boolean | undefined;
|
|
8318
8318
|
acs_user_id?: string | undefined;
|
|
8319
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8319
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8320
8320
|
external_type_display_name?: string | undefined;
|
|
8321
8321
|
acs_credential_pool_id?: string | undefined;
|
|
8322
8322
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8361,7 +8361,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8361
8361
|
is_managed: false;
|
|
8362
8362
|
acs_system_id: string;
|
|
8363
8363
|
acs_credential_id: string;
|
|
8364
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8364
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8365
8365
|
code?: string | null | undefined;
|
|
8366
8366
|
starts_at?: string | undefined;
|
|
8367
8367
|
ends_at?: string | undefined;
|
|
@@ -8388,7 +8388,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8388
8388
|
issued_at?: string | null | undefined;
|
|
8389
8389
|
is_issued?: boolean | undefined;
|
|
8390
8390
|
acs_user_id?: string | undefined;
|
|
8391
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8391
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8392
8392
|
external_type_display_name?: string | undefined;
|
|
8393
8393
|
acs_credential_pool_id?: string | undefined;
|
|
8394
8394
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8470,7 +8470,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8470
8470
|
is_managed: true;
|
|
8471
8471
|
acs_system_id: string;
|
|
8472
8472
|
acs_credential_id: string;
|
|
8473
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8473
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8474
8474
|
code?: string | null | undefined;
|
|
8475
8475
|
starts_at?: string | undefined;
|
|
8476
8476
|
ends_at?: string | undefined;
|
|
@@ -8497,7 +8497,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8497
8497
|
issued_at?: string | null | undefined;
|
|
8498
8498
|
is_issued?: boolean | undefined;
|
|
8499
8499
|
acs_user_id?: string | undefined;
|
|
8500
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8500
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8501
8501
|
external_type_display_name?: string | undefined;
|
|
8502
8502
|
acs_credential_pool_id?: string | undefined;
|
|
8503
8503
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8542,7 +8542,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8542
8542
|
is_managed: false;
|
|
8543
8543
|
acs_system_id: string;
|
|
8544
8544
|
acs_credential_id: string;
|
|
8545
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8545
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8546
8546
|
code?: string | null | undefined;
|
|
8547
8547
|
starts_at?: string | undefined;
|
|
8548
8548
|
ends_at?: string | undefined;
|
|
@@ -8569,7 +8569,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8569
8569
|
issued_at?: string | null | undefined;
|
|
8570
8570
|
is_issued?: boolean | undefined;
|
|
8571
8571
|
acs_user_id?: string | undefined;
|
|
8572
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8572
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8573
8573
|
external_type_display_name?: string | undefined;
|
|
8574
8574
|
acs_credential_pool_id?: string | undefined;
|
|
8575
8575
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8641,7 +8641,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8641
8641
|
is_managed: true;
|
|
8642
8642
|
acs_system_id: string;
|
|
8643
8643
|
acs_credential_id: string;
|
|
8644
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8644
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8645
8645
|
code?: string | null | undefined;
|
|
8646
8646
|
starts_at?: string | undefined;
|
|
8647
8647
|
ends_at?: string | undefined;
|
|
@@ -8668,7 +8668,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8668
8668
|
issued_at?: string | null | undefined;
|
|
8669
8669
|
is_issued?: boolean | undefined;
|
|
8670
8670
|
acs_user_id?: string | undefined;
|
|
8671
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8671
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8672
8672
|
external_type_display_name?: string | undefined;
|
|
8673
8673
|
acs_credential_pool_id?: string | undefined;
|
|
8674
8674
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8713,7 +8713,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8713
8713
|
is_managed: false;
|
|
8714
8714
|
acs_system_id: string;
|
|
8715
8715
|
acs_credential_id: string;
|
|
8716
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8716
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8717
8717
|
code?: string | null | undefined;
|
|
8718
8718
|
starts_at?: string | undefined;
|
|
8719
8719
|
ends_at?: string | undefined;
|
|
@@ -8740,7 +8740,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8740
8740
|
issued_at?: string | null | undefined;
|
|
8741
8741
|
is_issued?: boolean | undefined;
|
|
8742
8742
|
acs_user_id?: string | undefined;
|
|
8743
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8743
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8744
8744
|
external_type_display_name?: string | undefined;
|
|
8745
8745
|
acs_credential_pool_id?: string | undefined;
|
|
8746
8746
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8817,7 +8817,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8817
8817
|
is_managed: true;
|
|
8818
8818
|
acs_system_id: string;
|
|
8819
8819
|
acs_credential_id: string;
|
|
8820
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8820
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8821
8821
|
code?: string | null | undefined;
|
|
8822
8822
|
starts_at?: string | undefined;
|
|
8823
8823
|
ends_at?: string | undefined;
|
|
@@ -8844,7 +8844,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8844
8844
|
issued_at?: string | null | undefined;
|
|
8845
8845
|
is_issued?: boolean | undefined;
|
|
8846
8846
|
acs_user_id?: string | undefined;
|
|
8847
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8847
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8848
8848
|
external_type_display_name?: string | undefined;
|
|
8849
8849
|
acs_credential_pool_id?: string | undefined;
|
|
8850
8850
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8889,7 +8889,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8889
8889
|
is_managed: false;
|
|
8890
8890
|
acs_system_id: string;
|
|
8891
8891
|
acs_credential_id: string;
|
|
8892
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8892
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8893
8893
|
code?: string | null | undefined;
|
|
8894
8894
|
starts_at?: string | undefined;
|
|
8895
8895
|
ends_at?: string | undefined;
|
|
@@ -8916,7 +8916,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8916
8916
|
issued_at?: string | null | undefined;
|
|
8917
8917
|
is_issued?: boolean | undefined;
|
|
8918
8918
|
acs_user_id?: string | undefined;
|
|
8919
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8919
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
8920
8920
|
external_type_display_name?: string | undefined;
|
|
8921
8921
|
acs_credential_pool_id?: string | undefined;
|
|
8922
8922
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8994,7 +8994,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8994
8994
|
is_managed: true;
|
|
8995
8995
|
acs_system_id: string;
|
|
8996
8996
|
acs_credential_id: string;
|
|
8997
|
-
access_method: "code" | "card" | "mobile_key";
|
|
8997
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
8998
8998
|
code?: string | null | undefined;
|
|
8999
8999
|
starts_at?: string | undefined;
|
|
9000
9000
|
ends_at?: string | undefined;
|
|
@@ -9021,7 +9021,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9021
9021
|
issued_at?: string | null | undefined;
|
|
9022
9022
|
is_issued?: boolean | undefined;
|
|
9023
9023
|
acs_user_id?: string | undefined;
|
|
9024
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9024
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9025
9025
|
external_type_display_name?: string | undefined;
|
|
9026
9026
|
acs_credential_pool_id?: string | undefined;
|
|
9027
9027
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9066,7 +9066,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9066
9066
|
is_managed: false;
|
|
9067
9067
|
acs_system_id: string;
|
|
9068
9068
|
acs_credential_id: string;
|
|
9069
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9069
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9070
9070
|
code?: string | null | undefined;
|
|
9071
9071
|
starts_at?: string | undefined;
|
|
9072
9072
|
ends_at?: string | undefined;
|
|
@@ -9093,7 +9093,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9093
9093
|
issued_at?: string | null | undefined;
|
|
9094
9094
|
is_issued?: boolean | undefined;
|
|
9095
9095
|
acs_user_id?: string | undefined;
|
|
9096
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9096
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9097
9097
|
external_type_display_name?: string | undefined;
|
|
9098
9098
|
acs_credential_pool_id?: string | undefined;
|
|
9099
9099
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9225,8 +9225,8 @@ export declare const batch: z.ZodObject<{
|
|
|
9225
9225
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9226
9226
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9227
9227
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9228
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
9229
|
-
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"]>>;
|
|
9228
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9229
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9230
9230
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9231
9231
|
created_at: z.ZodString;
|
|
9232
9232
|
workspace_id: z.ZodString;
|
|
@@ -9413,7 +9413,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9413
9413
|
is_managed: true;
|
|
9414
9414
|
acs_system_id: string;
|
|
9415
9415
|
acs_credential_id: string;
|
|
9416
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9416
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9417
9417
|
code?: string | null | undefined;
|
|
9418
9418
|
starts_at?: string | undefined;
|
|
9419
9419
|
ends_at?: string | undefined;
|
|
@@ -9440,7 +9440,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9440
9440
|
issued_at?: string | null | undefined;
|
|
9441
9441
|
is_issued?: boolean | undefined;
|
|
9442
9442
|
acs_user_id?: string | undefined;
|
|
9443
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9443
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9444
9444
|
external_type_display_name?: string | undefined;
|
|
9445
9445
|
acs_credential_pool_id?: string | undefined;
|
|
9446
9446
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9485,7 +9485,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9485
9485
|
is_managed: true;
|
|
9486
9486
|
acs_system_id: string;
|
|
9487
9487
|
acs_credential_id: string;
|
|
9488
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9488
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9489
9489
|
code?: string | null | undefined;
|
|
9490
9490
|
starts_at?: string | undefined;
|
|
9491
9491
|
ends_at?: string | undefined;
|
|
@@ -9512,7 +9512,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9512
9512
|
issued_at?: string | null | undefined;
|
|
9513
9513
|
is_issued?: boolean | undefined;
|
|
9514
9514
|
acs_user_id?: string | undefined;
|
|
9515
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9515
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9516
9516
|
external_type_display_name?: string | undefined;
|
|
9517
9517
|
acs_credential_pool_id?: string | undefined;
|
|
9518
9518
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9534,8 +9534,8 @@ export declare const batch: z.ZodObject<{
|
|
|
9534
9534
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9535
9535
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9536
9536
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9537
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
9538
|
-
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"]>>;
|
|
9537
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9538
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
9539
9539
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9540
9540
|
created_at: z.ZodString;
|
|
9541
9541
|
workspace_id: z.ZodString;
|
|
@@ -9722,7 +9722,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9722
9722
|
is_managed: false;
|
|
9723
9723
|
acs_system_id: string;
|
|
9724
9724
|
acs_credential_id: string;
|
|
9725
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9725
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9726
9726
|
code?: string | null | undefined;
|
|
9727
9727
|
starts_at?: string | undefined;
|
|
9728
9728
|
ends_at?: string | undefined;
|
|
@@ -9749,7 +9749,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9749
9749
|
issued_at?: string | null | undefined;
|
|
9750
9750
|
is_issued?: boolean | undefined;
|
|
9751
9751
|
acs_user_id?: string | undefined;
|
|
9752
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9752
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9753
9753
|
external_type_display_name?: string | undefined;
|
|
9754
9754
|
acs_credential_pool_id?: string | undefined;
|
|
9755
9755
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9794,7 +9794,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9794
9794
|
is_managed: false;
|
|
9795
9795
|
acs_system_id: string;
|
|
9796
9796
|
acs_credential_id: string;
|
|
9797
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9797
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9798
9798
|
code?: string | null | undefined;
|
|
9799
9799
|
starts_at?: string | undefined;
|
|
9800
9800
|
ends_at?: string | undefined;
|
|
@@ -9821,7 +9821,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9821
9821
|
issued_at?: string | null | undefined;
|
|
9822
9822
|
is_issued?: boolean | undefined;
|
|
9823
9823
|
acs_user_id?: string | undefined;
|
|
9824
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9824
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9825
9825
|
external_type_display_name?: string | undefined;
|
|
9826
9826
|
acs_credential_pool_id?: string | undefined;
|
|
9827
9827
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9871,7 +9871,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9871
9871
|
is_managed: true;
|
|
9872
9872
|
acs_system_id: string;
|
|
9873
9873
|
acs_credential_id: string;
|
|
9874
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9874
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9875
9875
|
code?: string | null | undefined;
|
|
9876
9876
|
starts_at?: string | undefined;
|
|
9877
9877
|
ends_at?: string | undefined;
|
|
@@ -9898,7 +9898,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9898
9898
|
issued_at?: string | null | undefined;
|
|
9899
9899
|
is_issued?: boolean | undefined;
|
|
9900
9900
|
acs_user_id?: string | undefined;
|
|
9901
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9901
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9902
9902
|
external_type_display_name?: string | undefined;
|
|
9903
9903
|
acs_credential_pool_id?: string | undefined;
|
|
9904
9904
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9943,7 +9943,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9943
9943
|
is_managed: false;
|
|
9944
9944
|
acs_system_id: string;
|
|
9945
9945
|
acs_credential_id: string;
|
|
9946
|
-
access_method: "code" | "card" | "mobile_key";
|
|
9946
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
9947
9947
|
code?: string | null | undefined;
|
|
9948
9948
|
starts_at?: string | undefined;
|
|
9949
9949
|
ends_at?: string | undefined;
|
|
@@ -9970,7 +9970,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9970
9970
|
issued_at?: string | null | undefined;
|
|
9971
9971
|
is_issued?: boolean | undefined;
|
|
9972
9972
|
acs_user_id?: string | undefined;
|
|
9973
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9973
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
9974
9974
|
external_type_display_name?: string | undefined;
|
|
9975
9975
|
acs_credential_pool_id?: string | undefined;
|
|
9976
9976
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10021,7 +10021,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10021
10021
|
is_managed: true;
|
|
10022
10022
|
acs_system_id: string;
|
|
10023
10023
|
acs_credential_id: string;
|
|
10024
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10024
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10025
10025
|
code?: string | null | undefined;
|
|
10026
10026
|
starts_at?: string | undefined;
|
|
10027
10027
|
ends_at?: string | undefined;
|
|
@@ -10048,7 +10048,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10048
10048
|
issued_at?: string | null | undefined;
|
|
10049
10049
|
is_issued?: boolean | undefined;
|
|
10050
10050
|
acs_user_id?: string | undefined;
|
|
10051
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10051
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10052
10052
|
external_type_display_name?: string | undefined;
|
|
10053
10053
|
acs_credential_pool_id?: string | undefined;
|
|
10054
10054
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10093,7 +10093,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10093
10093
|
is_managed: false;
|
|
10094
10094
|
acs_system_id: string;
|
|
10095
10095
|
acs_credential_id: string;
|
|
10096
|
-
access_method: "code" | "card" | "mobile_key";
|
|
10096
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
10097
10097
|
code?: string | null | undefined;
|
|
10098
10098
|
starts_at?: string | undefined;
|
|
10099
10099
|
ends_at?: string | undefined;
|
|
@@ -10120,7 +10120,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10120
10120
|
issued_at?: string | null | undefined;
|
|
10121
10121
|
is_issued?: boolean | undefined;
|
|
10122
10122
|
acs_user_id?: string | undefined;
|
|
10123
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10123
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
10124
10124
|
external_type_display_name?: string | undefined;
|
|
10125
10125
|
acs_credential_pool_id?: string | undefined;
|
|
10126
10126
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -16322,6 +16322,22 @@ export declare const batch: z.ZodObject<{
|
|
|
16322
16322
|
message: string;
|
|
16323
16323
|
created_at: string;
|
|
16324
16324
|
warning_code: "updating_access_times";
|
|
16325
|
+
}>, z.ZodObject<{
|
|
16326
|
+
created_at: z.ZodString;
|
|
16327
|
+
message: z.ZodString;
|
|
16328
|
+
} & {
|
|
16329
|
+
warning_code: z.ZodLiteral<"pulled_backup_access_code">;
|
|
16330
|
+
original_access_method_id: z.ZodOptional<z.ZodString>;
|
|
16331
|
+
}, "strip", z.ZodTypeAny, {
|
|
16332
|
+
message: string;
|
|
16333
|
+
created_at: string;
|
|
16334
|
+
warning_code: "pulled_backup_access_code";
|
|
16335
|
+
original_access_method_id?: string | undefined;
|
|
16336
|
+
}, {
|
|
16337
|
+
message: string;
|
|
16338
|
+
created_at: string;
|
|
16339
|
+
warning_code: "pulled_backup_access_code";
|
|
16340
|
+
original_access_method_id?: string | undefined;
|
|
16325
16341
|
}>]>, "many">;
|
|
16326
16342
|
pending_mutations: z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<{
|
|
16327
16343
|
created_at: z.ZodString;
|
|
@@ -16464,6 +16480,11 @@ export declare const batch: z.ZodObject<{
|
|
|
16464
16480
|
message: string;
|
|
16465
16481
|
created_at: string;
|
|
16466
16482
|
warning_code: "updating_access_times";
|
|
16483
|
+
} | {
|
|
16484
|
+
message: string;
|
|
16485
|
+
created_at: string;
|
|
16486
|
+
warning_code: "pulled_backup_access_code";
|
|
16487
|
+
original_access_method_id?: string | undefined;
|
|
16467
16488
|
})[];
|
|
16468
16489
|
mode: "code" | "card" | "mobile_key";
|
|
16469
16490
|
pending_mutations: ({
|
|
@@ -16519,6 +16540,11 @@ export declare const batch: z.ZodObject<{
|
|
|
16519
16540
|
message: string;
|
|
16520
16541
|
created_at: string;
|
|
16521
16542
|
warning_code: "updating_access_times";
|
|
16543
|
+
} | {
|
|
16544
|
+
message: string;
|
|
16545
|
+
created_at: string;
|
|
16546
|
+
warning_code: "pulled_backup_access_code";
|
|
16547
|
+
original_access_method_id?: string | undefined;
|
|
16522
16548
|
})[];
|
|
16523
16549
|
mode: "code" | "card" | "mobile_key";
|
|
16524
16550
|
pending_mutations: ({
|
|
@@ -26349,7 +26375,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26349
26375
|
is_managed: true;
|
|
26350
26376
|
acs_system_id: string;
|
|
26351
26377
|
acs_credential_id: string;
|
|
26352
|
-
access_method: "code" | "card" | "mobile_key";
|
|
26378
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
26353
26379
|
code?: string | null | undefined;
|
|
26354
26380
|
starts_at?: string | undefined;
|
|
26355
26381
|
ends_at?: string | undefined;
|
|
@@ -26376,7 +26402,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26376
26402
|
issued_at?: string | null | undefined;
|
|
26377
26403
|
is_issued?: boolean | undefined;
|
|
26378
26404
|
acs_user_id?: string | undefined;
|
|
26379
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26405
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26380
26406
|
external_type_display_name?: string | undefined;
|
|
26381
26407
|
acs_credential_pool_id?: string | undefined;
|
|
26382
26408
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -26422,7 +26448,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26422
26448
|
is_managed: false;
|
|
26423
26449
|
acs_system_id: string;
|
|
26424
26450
|
acs_credential_id: string;
|
|
26425
|
-
access_method: "code" | "card" | "mobile_key";
|
|
26451
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
26426
26452
|
code?: string | null | undefined;
|
|
26427
26453
|
starts_at?: string | undefined;
|
|
26428
26454
|
ends_at?: string | undefined;
|
|
@@ -26449,7 +26475,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26449
26475
|
issued_at?: string | null | undefined;
|
|
26450
26476
|
is_issued?: boolean | undefined;
|
|
26451
26477
|
acs_user_id?: string | undefined;
|
|
26452
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26478
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26453
26479
|
external_type_display_name?: string | undefined;
|
|
26454
26480
|
acs_credential_pool_id?: string | undefined;
|
|
26455
26481
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -26681,7 +26707,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26681
26707
|
is_managed: true;
|
|
26682
26708
|
acs_system_id: string;
|
|
26683
26709
|
acs_credential_id: string;
|
|
26684
|
-
access_method: "code" | "card" | "mobile_key";
|
|
26710
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
26685
26711
|
code?: string | null | undefined;
|
|
26686
26712
|
starts_at?: string | undefined;
|
|
26687
26713
|
ends_at?: string | undefined;
|
|
@@ -26708,7 +26734,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26708
26734
|
issued_at?: string | null | undefined;
|
|
26709
26735
|
is_issued?: boolean | undefined;
|
|
26710
26736
|
acs_user_id?: string | undefined;
|
|
26711
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26737
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26712
26738
|
external_type_display_name?: string | undefined;
|
|
26713
26739
|
acs_credential_pool_id?: string | undefined;
|
|
26714
26740
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -26753,7 +26779,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26753
26779
|
is_managed: false;
|
|
26754
26780
|
acs_system_id: string;
|
|
26755
26781
|
acs_credential_id: string;
|
|
26756
|
-
access_method: "code" | "card" | "mobile_key";
|
|
26782
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
26757
26783
|
code?: string | null | undefined;
|
|
26758
26784
|
starts_at?: string | undefined;
|
|
26759
26785
|
ends_at?: string | undefined;
|
|
@@ -26780,7 +26806,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26780
26806
|
issued_at?: string | null | undefined;
|
|
26781
26807
|
is_issued?: boolean | undefined;
|
|
26782
26808
|
acs_user_id?: string | undefined;
|
|
26783
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26809
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26784
26810
|
external_type_display_name?: string | undefined;
|
|
26785
26811
|
acs_credential_pool_id?: string | undefined;
|
|
26786
26812
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -26952,7 +26978,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26952
26978
|
is_managed: true;
|
|
26953
26979
|
acs_system_id: string;
|
|
26954
26980
|
acs_credential_id: string;
|
|
26955
|
-
access_method: "code" | "card" | "mobile_key";
|
|
26981
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
26956
26982
|
code?: string | null | undefined;
|
|
26957
26983
|
starts_at?: string | undefined;
|
|
26958
26984
|
ends_at?: string | undefined;
|
|
@@ -26979,7 +27005,7 @@ export declare const batch: z.ZodObject<{
|
|
|
26979
27005
|
issued_at?: string | null | undefined;
|
|
26980
27006
|
is_issued?: boolean | undefined;
|
|
26981
27007
|
acs_user_id?: string | undefined;
|
|
26982
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27008
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26983
27009
|
external_type_display_name?: string | undefined;
|
|
26984
27010
|
acs_credential_pool_id?: string | undefined;
|
|
26985
27011
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27024,7 +27050,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27024
27050
|
is_managed: false;
|
|
27025
27051
|
acs_system_id: string;
|
|
27026
27052
|
acs_credential_id: string;
|
|
27027
|
-
access_method: "code" | "card" | "mobile_key";
|
|
27053
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
27028
27054
|
code?: string | null | undefined;
|
|
27029
27055
|
starts_at?: string | undefined;
|
|
27030
27056
|
ends_at?: string | undefined;
|
|
@@ -27051,7 +27077,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27051
27077
|
issued_at?: string | null | undefined;
|
|
27052
27078
|
is_issued?: boolean | undefined;
|
|
27053
27079
|
acs_user_id?: string | undefined;
|
|
27054
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27080
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27055
27081
|
external_type_display_name?: string | undefined;
|
|
27056
27082
|
acs_credential_pool_id?: string | undefined;
|
|
27057
27083
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27715,6 +27741,11 @@ export declare const batch: z.ZodObject<{
|
|
|
27715
27741
|
message: string;
|
|
27716
27742
|
created_at: string;
|
|
27717
27743
|
warning_code: "updating_access_times";
|
|
27744
|
+
} | {
|
|
27745
|
+
message: string;
|
|
27746
|
+
created_at: string;
|
|
27747
|
+
warning_code: "pulled_backup_access_code";
|
|
27748
|
+
original_access_method_id?: string | undefined;
|
|
27718
27749
|
})[];
|
|
27719
27750
|
mode: "code" | "card" | "mobile_key";
|
|
27720
27751
|
pending_mutations: ({
|
|
@@ -31146,7 +31177,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31146
31177
|
is_managed: true;
|
|
31147
31178
|
acs_system_id: string;
|
|
31148
31179
|
acs_credential_id: string;
|
|
31149
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31180
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31150
31181
|
code?: string | null | undefined;
|
|
31151
31182
|
starts_at?: string | undefined;
|
|
31152
31183
|
ends_at?: string | undefined;
|
|
@@ -31173,7 +31204,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31173
31204
|
issued_at?: string | null | undefined;
|
|
31174
31205
|
is_issued?: boolean | undefined;
|
|
31175
31206
|
acs_user_id?: string | undefined;
|
|
31176
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31207
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31177
31208
|
external_type_display_name?: string | undefined;
|
|
31178
31209
|
acs_credential_pool_id?: string | undefined;
|
|
31179
31210
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -31219,7 +31250,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31219
31250
|
is_managed: false;
|
|
31220
31251
|
acs_system_id: string;
|
|
31221
31252
|
acs_credential_id: string;
|
|
31222
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31253
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31223
31254
|
code?: string | null | undefined;
|
|
31224
31255
|
starts_at?: string | undefined;
|
|
31225
31256
|
ends_at?: string | undefined;
|
|
@@ -31246,7 +31277,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31246
31277
|
issued_at?: string | null | undefined;
|
|
31247
31278
|
is_issued?: boolean | undefined;
|
|
31248
31279
|
acs_user_id?: string | undefined;
|
|
31249
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31280
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31250
31281
|
external_type_display_name?: string | undefined;
|
|
31251
31282
|
acs_credential_pool_id?: string | undefined;
|
|
31252
31283
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -31478,7 +31509,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31478
31509
|
is_managed: true;
|
|
31479
31510
|
acs_system_id: string;
|
|
31480
31511
|
acs_credential_id: string;
|
|
31481
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31512
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31482
31513
|
code?: string | null | undefined;
|
|
31483
31514
|
starts_at?: string | undefined;
|
|
31484
31515
|
ends_at?: string | undefined;
|
|
@@ -31505,7 +31536,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31505
31536
|
issued_at?: string | null | undefined;
|
|
31506
31537
|
is_issued?: boolean | undefined;
|
|
31507
31538
|
acs_user_id?: string | undefined;
|
|
31508
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31539
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31509
31540
|
external_type_display_name?: string | undefined;
|
|
31510
31541
|
acs_credential_pool_id?: string | undefined;
|
|
31511
31542
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -31550,7 +31581,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31550
31581
|
is_managed: false;
|
|
31551
31582
|
acs_system_id: string;
|
|
31552
31583
|
acs_credential_id: string;
|
|
31553
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31584
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31554
31585
|
code?: string | null | undefined;
|
|
31555
31586
|
starts_at?: string | undefined;
|
|
31556
31587
|
ends_at?: string | undefined;
|
|
@@ -31577,7 +31608,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31577
31608
|
issued_at?: string | null | undefined;
|
|
31578
31609
|
is_issued?: boolean | undefined;
|
|
31579
31610
|
acs_user_id?: string | undefined;
|
|
31580
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31611
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31581
31612
|
external_type_display_name?: string | undefined;
|
|
31582
31613
|
acs_credential_pool_id?: string | undefined;
|
|
31583
31614
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -31749,7 +31780,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31749
31780
|
is_managed: true;
|
|
31750
31781
|
acs_system_id: string;
|
|
31751
31782
|
acs_credential_id: string;
|
|
31752
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31783
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31753
31784
|
code?: string | null | undefined;
|
|
31754
31785
|
starts_at?: string | undefined;
|
|
31755
31786
|
ends_at?: string | undefined;
|
|
@@ -31776,7 +31807,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31776
31807
|
issued_at?: string | null | undefined;
|
|
31777
31808
|
is_issued?: boolean | undefined;
|
|
31778
31809
|
acs_user_id?: string | undefined;
|
|
31779
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31810
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31780
31811
|
external_type_display_name?: string | undefined;
|
|
31781
31812
|
acs_credential_pool_id?: string | undefined;
|
|
31782
31813
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -31821,7 +31852,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31821
31852
|
is_managed: false;
|
|
31822
31853
|
acs_system_id: string;
|
|
31823
31854
|
acs_credential_id: string;
|
|
31824
|
-
access_method: "code" | "card" | "mobile_key";
|
|
31855
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
31825
31856
|
code?: string | null | undefined;
|
|
31826
31857
|
starts_at?: string | undefined;
|
|
31827
31858
|
ends_at?: string | undefined;
|
|
@@ -31848,7 +31879,7 @@ export declare const batch: z.ZodObject<{
|
|
|
31848
31879
|
issued_at?: string | null | undefined;
|
|
31849
31880
|
is_issued?: boolean | undefined;
|
|
31850
31881
|
acs_user_id?: string | undefined;
|
|
31851
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31882
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
31852
31883
|
external_type_display_name?: string | undefined;
|
|
31853
31884
|
acs_credential_pool_id?: string | undefined;
|
|
31854
31885
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32512,6 +32543,11 @@ export declare const batch: z.ZodObject<{
|
|
|
32512
32543
|
message: string;
|
|
32513
32544
|
created_at: string;
|
|
32514
32545
|
warning_code: "updating_access_times";
|
|
32546
|
+
} | {
|
|
32547
|
+
message: string;
|
|
32548
|
+
created_at: string;
|
|
32549
|
+
warning_code: "pulled_backup_access_code";
|
|
32550
|
+
original_access_method_id?: string | undefined;
|
|
32515
32551
|
})[];
|
|
32516
32552
|
mode: "code" | "card" | "mobile_key";
|
|
32517
32553
|
pending_mutations: ({
|