@seamapi/types 1.829.0 → 1.831.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 +21 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +210 -209
- package/dist/index.cjs +21 -10
- 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/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 +42 -42
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -2
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +137 -137
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -2
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +137 -0
|
@@ -7060,7 +7060,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7060
7060
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7061
7061
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7062
7062
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7063
|
-
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"]>>;
|
|
7063
|
+
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"]>>;
|
|
7064
7064
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7065
7065
|
created_at: z.ZodString;
|
|
7066
7066
|
workspace_id: z.ZodString;
|
|
@@ -7274,7 +7274,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7274
7274
|
issued_at?: string | null | undefined;
|
|
7275
7275
|
is_issued?: boolean | undefined;
|
|
7276
7276
|
acs_user_id?: string | undefined;
|
|
7277
|
-
external_type?: "pti_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;
|
|
7277
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
7278
7278
|
external_type_display_name?: string | undefined;
|
|
7279
7279
|
acs_credential_pool_id?: string | undefined;
|
|
7280
7280
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7346,7 +7346,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7346
7346
|
issued_at?: string | null | undefined;
|
|
7347
7347
|
is_issued?: boolean | undefined;
|
|
7348
7348
|
acs_user_id?: string | undefined;
|
|
7349
|
-
external_type?: "pti_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;
|
|
7349
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
7350
7350
|
external_type_display_name?: string | undefined;
|
|
7351
7351
|
acs_credential_pool_id?: string | undefined;
|
|
7352
7352
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7370,7 +7370,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7370
7370
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7371
7371
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7372
7372
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7373
|
-
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"]>>;
|
|
7373
|
+
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"]>>;
|
|
7374
7374
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7375
7375
|
created_at: z.ZodString;
|
|
7376
7376
|
workspace_id: z.ZodString;
|
|
@@ -7584,7 +7584,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7584
7584
|
issued_at?: string | null | undefined;
|
|
7585
7585
|
is_issued?: boolean | undefined;
|
|
7586
7586
|
acs_user_id?: string | undefined;
|
|
7587
|
-
external_type?: "pti_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;
|
|
7587
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
7588
7588
|
external_type_display_name?: string | undefined;
|
|
7589
7589
|
acs_credential_pool_id?: string | undefined;
|
|
7590
7590
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7656,7 +7656,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7656
7656
|
issued_at?: string | null | undefined;
|
|
7657
7657
|
is_issued?: boolean | undefined;
|
|
7658
7658
|
acs_user_id?: string | undefined;
|
|
7659
|
-
external_type?: "pti_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;
|
|
7659
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
7660
7660
|
external_type_display_name?: string | undefined;
|
|
7661
7661
|
acs_credential_pool_id?: string | undefined;
|
|
7662
7662
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -7965,7 +7965,7 @@ export declare const batch: z.ZodObject<{
|
|
|
7965
7965
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
7966
7966
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7967
7967
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
7968
|
-
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"]>>;
|
|
7968
|
+
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"]>>;
|
|
7969
7969
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
7970
7970
|
created_at: z.ZodString;
|
|
7971
7971
|
workspace_id: z.ZodString;
|
|
@@ -8179,7 +8179,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8179
8179
|
issued_at?: string | null | undefined;
|
|
8180
8180
|
is_issued?: boolean | undefined;
|
|
8181
8181
|
acs_user_id?: string | undefined;
|
|
8182
|
-
external_type?: "pti_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;
|
|
8182
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8183
8183
|
external_type_display_name?: string | undefined;
|
|
8184
8184
|
acs_credential_pool_id?: string | undefined;
|
|
8185
8185
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8251,7 +8251,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8251
8251
|
issued_at?: string | null | undefined;
|
|
8252
8252
|
is_issued?: boolean | undefined;
|
|
8253
8253
|
acs_user_id?: string | undefined;
|
|
8254
|
-
external_type?: "pti_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;
|
|
8254
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8255
8255
|
external_type_display_name?: string | undefined;
|
|
8256
8256
|
acs_credential_pool_id?: string | undefined;
|
|
8257
8257
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8274,7 +8274,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8274
8274
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
8275
8275
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8276
8276
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
8277
|
-
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"]>>;
|
|
8277
|
+
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"]>>;
|
|
8278
8278
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
8279
8279
|
created_at: z.ZodString;
|
|
8280
8280
|
workspace_id: z.ZodString;
|
|
@@ -8488,7 +8488,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8488
8488
|
issued_at?: string | null | undefined;
|
|
8489
8489
|
is_issued?: boolean | undefined;
|
|
8490
8490
|
acs_user_id?: string | undefined;
|
|
8491
|
-
external_type?: "pti_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;
|
|
8491
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8492
8492
|
external_type_display_name?: string | undefined;
|
|
8493
8493
|
acs_credential_pool_id?: string | undefined;
|
|
8494
8494
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8560,7 +8560,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8560
8560
|
issued_at?: string | null | undefined;
|
|
8561
8561
|
is_issued?: boolean | undefined;
|
|
8562
8562
|
acs_user_id?: string | undefined;
|
|
8563
|
-
external_type?: "pti_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;
|
|
8563
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8564
8564
|
external_type_display_name?: string | undefined;
|
|
8565
8565
|
acs_credential_pool_id?: string | undefined;
|
|
8566
8566
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8669,7 +8669,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8669
8669
|
issued_at?: string | null | undefined;
|
|
8670
8670
|
is_issued?: boolean | undefined;
|
|
8671
8671
|
acs_user_id?: string | undefined;
|
|
8672
|
-
external_type?: "pti_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;
|
|
8672
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8673
8673
|
external_type_display_name?: string | undefined;
|
|
8674
8674
|
acs_credential_pool_id?: string | undefined;
|
|
8675
8675
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8741,7 +8741,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8741
8741
|
issued_at?: string | null | undefined;
|
|
8742
8742
|
is_issued?: boolean | undefined;
|
|
8743
8743
|
acs_user_id?: string | undefined;
|
|
8744
|
-
external_type?: "pti_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;
|
|
8744
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8745
8745
|
external_type_display_name?: string | undefined;
|
|
8746
8746
|
acs_credential_pool_id?: string | undefined;
|
|
8747
8747
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8840,7 +8840,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8840
8840
|
issued_at?: string | null | undefined;
|
|
8841
8841
|
is_issued?: boolean | undefined;
|
|
8842
8842
|
acs_user_id?: string | undefined;
|
|
8843
|
-
external_type?: "pti_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;
|
|
8843
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8844
8844
|
external_type_display_name?: string | undefined;
|
|
8845
8845
|
acs_credential_pool_id?: string | undefined;
|
|
8846
8846
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -8912,7 +8912,7 @@ export declare const batch: z.ZodObject<{
|
|
|
8912
8912
|
issued_at?: string | null | undefined;
|
|
8913
8913
|
is_issued?: boolean | undefined;
|
|
8914
8914
|
acs_user_id?: string | undefined;
|
|
8915
|
-
external_type?: "pti_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;
|
|
8915
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
8916
8916
|
external_type_display_name?: string | undefined;
|
|
8917
8917
|
acs_credential_pool_id?: string | undefined;
|
|
8918
8918
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9016,7 +9016,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9016
9016
|
issued_at?: string | null | undefined;
|
|
9017
9017
|
is_issued?: boolean | undefined;
|
|
9018
9018
|
acs_user_id?: string | undefined;
|
|
9019
|
-
external_type?: "pti_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;
|
|
9019
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9020
9020
|
external_type_display_name?: string | undefined;
|
|
9021
9021
|
acs_credential_pool_id?: string | undefined;
|
|
9022
9022
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9088,7 +9088,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9088
9088
|
issued_at?: string | null | undefined;
|
|
9089
9089
|
is_issued?: boolean | undefined;
|
|
9090
9090
|
acs_user_id?: string | undefined;
|
|
9091
|
-
external_type?: "pti_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;
|
|
9091
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9092
9092
|
external_type_display_name?: string | undefined;
|
|
9093
9093
|
acs_credential_pool_id?: string | undefined;
|
|
9094
9094
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9193,7 +9193,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9193
9193
|
issued_at?: string | null | undefined;
|
|
9194
9194
|
is_issued?: boolean | undefined;
|
|
9195
9195
|
acs_user_id?: string | undefined;
|
|
9196
|
-
external_type?: "pti_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;
|
|
9196
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9197
9197
|
external_type_display_name?: string | undefined;
|
|
9198
9198
|
acs_credential_pool_id?: string | undefined;
|
|
9199
9199
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9265,7 +9265,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9265
9265
|
issued_at?: string | null | undefined;
|
|
9266
9266
|
is_issued?: boolean | undefined;
|
|
9267
9267
|
acs_user_id?: string | undefined;
|
|
9268
|
-
external_type?: "pti_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;
|
|
9268
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9269
9269
|
external_type_display_name?: string | undefined;
|
|
9270
9270
|
acs_credential_pool_id?: string | undefined;
|
|
9271
9271
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9428,7 +9428,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9428
9428
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9429
9429
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9430
9430
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9431
|
-
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"]>>;
|
|
9431
|
+
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"]>>;
|
|
9432
9432
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9433
9433
|
created_at: z.ZodString;
|
|
9434
9434
|
workspace_id: z.ZodString;
|
|
@@ -9642,7 +9642,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9642
9642
|
issued_at?: string | null | undefined;
|
|
9643
9643
|
is_issued?: boolean | undefined;
|
|
9644
9644
|
acs_user_id?: string | undefined;
|
|
9645
|
-
external_type?: "pti_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;
|
|
9645
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9646
9646
|
external_type_display_name?: string | undefined;
|
|
9647
9647
|
acs_credential_pool_id?: string | undefined;
|
|
9648
9648
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9714,7 +9714,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9714
9714
|
issued_at?: string | null | undefined;
|
|
9715
9715
|
is_issued?: boolean | undefined;
|
|
9716
9716
|
acs_user_id?: string | undefined;
|
|
9717
|
-
external_type?: "pti_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;
|
|
9717
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9718
9718
|
external_type_display_name?: string | undefined;
|
|
9719
9719
|
acs_credential_pool_id?: string | undefined;
|
|
9720
9720
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -9737,7 +9737,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9737
9737
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
9738
9738
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9739
9739
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
9740
|
-
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"]>>;
|
|
9740
|
+
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"]>>;
|
|
9741
9741
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
9742
9742
|
created_at: z.ZodString;
|
|
9743
9743
|
workspace_id: z.ZodString;
|
|
@@ -9951,7 +9951,7 @@ export declare const batch: z.ZodObject<{
|
|
|
9951
9951
|
issued_at?: string | null | undefined;
|
|
9952
9952
|
is_issued?: boolean | undefined;
|
|
9953
9953
|
acs_user_id?: string | undefined;
|
|
9954
|
-
external_type?: "pti_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;
|
|
9954
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
9955
9955
|
external_type_display_name?: string | undefined;
|
|
9956
9956
|
acs_credential_pool_id?: string | undefined;
|
|
9957
9957
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10023,7 +10023,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10023
10023
|
issued_at?: string | null | undefined;
|
|
10024
10024
|
is_issued?: boolean | undefined;
|
|
10025
10025
|
acs_user_id?: string | undefined;
|
|
10026
|
-
external_type?: "pti_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;
|
|
10026
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
10027
10027
|
external_type_display_name?: string | undefined;
|
|
10028
10028
|
acs_credential_pool_id?: string | undefined;
|
|
10029
10029
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10100,7 +10100,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10100
10100
|
issued_at?: string | null | undefined;
|
|
10101
10101
|
is_issued?: boolean | undefined;
|
|
10102
10102
|
acs_user_id?: string | undefined;
|
|
10103
|
-
external_type?: "pti_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;
|
|
10103
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
10104
10104
|
external_type_display_name?: string | undefined;
|
|
10105
10105
|
acs_credential_pool_id?: string | undefined;
|
|
10106
10106
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10172,7 +10172,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10172
10172
|
issued_at?: string | null | undefined;
|
|
10173
10173
|
is_issued?: boolean | undefined;
|
|
10174
10174
|
acs_user_id?: string | undefined;
|
|
10175
|
-
external_type?: "pti_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;
|
|
10175
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
10176
10176
|
external_type_display_name?: string | undefined;
|
|
10177
10177
|
acs_credential_pool_id?: string | undefined;
|
|
10178
10178
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10250,7 +10250,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10250
10250
|
issued_at?: string | null | undefined;
|
|
10251
10251
|
is_issued?: boolean | undefined;
|
|
10252
10252
|
acs_user_id?: string | undefined;
|
|
10253
|
-
external_type?: "pti_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;
|
|
10253
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
10254
10254
|
external_type_display_name?: string | undefined;
|
|
10255
10255
|
acs_credential_pool_id?: string | undefined;
|
|
10256
10256
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -10322,7 +10322,7 @@ export declare const batch: z.ZodObject<{
|
|
|
10322
10322
|
issued_at?: string | null | undefined;
|
|
10323
10323
|
is_issued?: boolean | undefined;
|
|
10324
10324
|
acs_user_id?: string | undefined;
|
|
10325
|
-
external_type?: "pti_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;
|
|
10325
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
10326
10326
|
external_type_display_name?: string | undefined;
|
|
10327
10327
|
acs_credential_pool_id?: string | undefined;
|
|
10328
10328
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27320,7 +27320,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27320
27320
|
issued_at?: string | null | undefined;
|
|
27321
27321
|
is_issued?: boolean | undefined;
|
|
27322
27322
|
acs_user_id?: string | undefined;
|
|
27323
|
-
external_type?: "pti_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;
|
|
27323
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
27324
27324
|
external_type_display_name?: string | undefined;
|
|
27325
27325
|
acs_credential_pool_id?: string | undefined;
|
|
27326
27326
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27393,7 +27393,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27393
27393
|
issued_at?: string | null | undefined;
|
|
27394
27394
|
is_issued?: boolean | undefined;
|
|
27395
27395
|
acs_user_id?: string | undefined;
|
|
27396
|
-
external_type?: "pti_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;
|
|
27396
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
27397
27397
|
external_type_display_name?: string | undefined;
|
|
27398
27398
|
acs_credential_pool_id?: string | undefined;
|
|
27399
27399
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27673,7 +27673,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27673
27673
|
issued_at?: string | null | undefined;
|
|
27674
27674
|
is_issued?: boolean | undefined;
|
|
27675
27675
|
acs_user_id?: string | undefined;
|
|
27676
|
-
external_type?: "pti_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;
|
|
27676
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
27677
27677
|
external_type_display_name?: string | undefined;
|
|
27678
27678
|
acs_credential_pool_id?: string | undefined;
|
|
27679
27679
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27745,7 +27745,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27745
27745
|
issued_at?: string | null | undefined;
|
|
27746
27746
|
is_issued?: boolean | undefined;
|
|
27747
27747
|
acs_user_id?: string | undefined;
|
|
27748
|
-
external_type?: "pti_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;
|
|
27748
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
27749
27749
|
external_type_display_name?: string | undefined;
|
|
27750
27750
|
acs_credential_pool_id?: string | undefined;
|
|
27751
27751
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -27956,7 +27956,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27956
27956
|
issued_at?: string | null | undefined;
|
|
27957
27957
|
is_issued?: boolean | undefined;
|
|
27958
27958
|
acs_user_id?: string | undefined;
|
|
27959
|
-
external_type?: "pti_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;
|
|
27959
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
27960
27960
|
external_type_display_name?: string | undefined;
|
|
27961
27961
|
acs_credential_pool_id?: string | undefined;
|
|
27962
27962
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -28028,7 +28028,7 @@ export declare const batch: z.ZodObject<{
|
|
|
28028
28028
|
issued_at?: string | null | undefined;
|
|
28029
28029
|
is_issued?: boolean | undefined;
|
|
28030
28030
|
acs_user_id?: string | undefined;
|
|
28031
|
-
external_type?: "pti_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;
|
|
28031
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
28032
28032
|
external_type_display_name?: string | undefined;
|
|
28033
28033
|
acs_credential_pool_id?: string | undefined;
|
|
28034
28034
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32295,7 +32295,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32295
32295
|
issued_at?: string | null | undefined;
|
|
32296
32296
|
is_issued?: boolean | undefined;
|
|
32297
32297
|
acs_user_id?: string | undefined;
|
|
32298
|
-
external_type?: "pti_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;
|
|
32298
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
32299
32299
|
external_type_display_name?: string | undefined;
|
|
32300
32300
|
acs_credential_pool_id?: string | undefined;
|
|
32301
32301
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32368,7 +32368,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32368
32368
|
issued_at?: string | null | undefined;
|
|
32369
32369
|
is_issued?: boolean | undefined;
|
|
32370
32370
|
acs_user_id?: string | undefined;
|
|
32371
|
-
external_type?: "pti_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;
|
|
32371
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
32372
32372
|
external_type_display_name?: string | undefined;
|
|
32373
32373
|
acs_credential_pool_id?: string | undefined;
|
|
32374
32374
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32648,7 +32648,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32648
32648
|
issued_at?: string | null | undefined;
|
|
32649
32649
|
is_issued?: boolean | undefined;
|
|
32650
32650
|
acs_user_id?: string | undefined;
|
|
32651
|
-
external_type?: "pti_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;
|
|
32651
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
32652
32652
|
external_type_display_name?: string | undefined;
|
|
32653
32653
|
acs_credential_pool_id?: string | undefined;
|
|
32654
32654
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32720,7 +32720,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32720
32720
|
issued_at?: string | null | undefined;
|
|
32721
32721
|
is_issued?: boolean | undefined;
|
|
32722
32722
|
acs_user_id?: string | undefined;
|
|
32723
|
-
external_type?: "pti_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;
|
|
32723
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
32724
32724
|
external_type_display_name?: string | undefined;
|
|
32725
32725
|
acs_credential_pool_id?: string | undefined;
|
|
32726
32726
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -32931,7 +32931,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32931
32931
|
issued_at?: string | null | undefined;
|
|
32932
32932
|
is_issued?: boolean | undefined;
|
|
32933
32933
|
acs_user_id?: string | undefined;
|
|
32934
|
-
external_type?: "pti_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;
|
|
32934
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
32935
32935
|
external_type_display_name?: string | undefined;
|
|
32936
32936
|
acs_credential_pool_id?: string | undefined;
|
|
32937
32937
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -33003,7 +33003,7 @@ export declare const batch: z.ZodObject<{
|
|
|
33003
33003
|
issued_at?: string | null | undefined;
|
|
33004
33004
|
is_issued?: boolean | undefined;
|
|
33005
33005
|
acs_user_id?: string | undefined;
|
|
33006
|
-
external_type?: "pti_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;
|
|
33006
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
33007
33007
|
external_type_display_name?: string | undefined;
|
|
33008
33008
|
acs_credential_pool_id?: string | undefined;
|
|
33009
33009
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -38,6 +38,7 @@ export declare const DEVICE_PROVIDERS: {
|
|
|
38
38
|
readonly ASSA_ABLOY_CREDENTIAL_SERVICE: "assa_abloy_credential_service";
|
|
39
39
|
readonly TEDEE: "tedee";
|
|
40
40
|
readonly HONEYWELL_RESIDEO: "honeywell_resideo";
|
|
41
|
+
readonly FIRST_ALERT: "first_alert";
|
|
41
42
|
readonly LATCH: "latch";
|
|
42
43
|
readonly AKILES: "akiles";
|
|
43
44
|
readonly VOSTIO: "assa_abloy_vostio";
|
|
@@ -61,8 +62,8 @@ export type ProviderCategory = keyof typeof PROVIDER_CATEGORY_MAP;
|
|
|
61
62
|
export declare const PROVIDER_CATEGORY_MAP: {
|
|
62
63
|
readonly stable: readonly ["august", "brivo", "schlage", "smartthings", "yale", "nuki", "salto_ks", "salto_space", "minut", "my_2n", "kwikset", "ttlock", "noiseaware", "igloohome", "ecobee", "lockly", "wyze", "nest", "tedee", "honeywell_resideo", "visionline", "assa_abloy_credential_service", "dormakaba_ambiance", "latch", "akiles", "sensi", "assa_abloy_vostio", "avigilon_alta", "keynest", "hotek", "ultraloq", "dormakaba_oracode", "ring"];
|
|
63
64
|
readonly consumer_smartlocks: readonly ["akiles", "august", "schlage", "yale", "smartthings", "nuki", "ttlock", "kwikset", "igloohome", "wyze", "lockly", "tedee", "ultraloq", "dormakaba_oracode"];
|
|
64
|
-
readonly beta: readonly ["korelock"];
|
|
65
|
-
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo"];
|
|
65
|
+
readonly beta: readonly ["korelock", "first_alert"];
|
|
66
|
+
readonly thermostats: readonly ["ecobee", "nest", "sensi", "honeywell_resideo", "first_alert"];
|
|
66
67
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
67
68
|
readonly access_control_systems: readonly ["brivo", "visionline", "assa_abloy_credential_service", "latch", "salto_ks", "assa_abloy_vostio", "salto_space", "dormakaba_ambiance", "dormakaba_community", "legic_connect", "hotek"];
|
|
68
69
|
readonly cameras: readonly ["ring"];
|
|
@@ -38,6 +38,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
38
38
|
ASSA_ABLOY_CREDENTIAL_SERVICE: 'assa_abloy_credential_service',
|
|
39
39
|
TEDEE: 'tedee',
|
|
40
40
|
HONEYWELL_RESIDEO: 'honeywell_resideo',
|
|
41
|
+
FIRST_ALERT: 'first_alert',
|
|
41
42
|
LATCH: 'latch',
|
|
42
43
|
AKILES: 'akiles',
|
|
43
44
|
VOSTIO: 'assa_abloy_vostio',
|
|
@@ -105,8 +106,8 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
105
106
|
'ultraloq',
|
|
106
107
|
'dormakaba_oracode',
|
|
107
108
|
],
|
|
108
|
-
beta: ['korelock'],
|
|
109
|
-
thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo'],
|
|
109
|
+
beta: ['korelock', 'first_alert'],
|
|
110
|
+
thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo', 'first_alert'],
|
|
110
111
|
noise_sensors: ['minut', 'noiseaware'],
|
|
111
112
|
access_control_systems: [
|
|
112
113
|
'brivo',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAA;AAErD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,OAAO;IACd,mBAAmB,EAAE,qBAAqB;IAC1C,aAAa,EAAE,eAAe;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;IAC1B,iBAAiB,EAAE,mBAAmB;IACtC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,UAAU,EAAE,YAAY;IACxB,6BAA6B,EAAE,+BAA+B;IAC9D,KAAK,EAAE,OAAO;IACd,iBAAiB,EAAE,mBAAmB;IACtC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,mBAAmB;IAC3B,oCAAoC,EAAE,sCAAsC;IAC5E,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,kBAAkB,EAAE,oBAAoB;IACxC,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;CACJ,CAAA;AAKV,MAAM,CAAC,MAAM,oBAAoB,GAG7B,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAQ,CAAA;AAI1C,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,MAAM,EAAE;QACN,QAAQ;QACR,OAAO;QACP,SAAS;QACT,aAAa;QACb,MAAM;QACN,MAAM;QACN,UAAU;QACV,aAAa;QACb,OAAO;QACP,OAAO;QACP,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,WAAW;QACX,QAAQ;QACR,QAAQ;QACR,MAAM;QACN,MAAM;QACN,OAAO;QACP,mBAAmB;QACnB,YAAY;QACZ,+BAA+B;QAC/B,oBAAoB;QACpB,OAAO;QACP,QAAQ;QACR,OAAO;QACP,mBAAmB;QACnB,eAAe;QACf,SAAS;QACT,OAAO;QACP,UAAU;QACV,mBAAmB;QACnB,MAAM;KACP;IAED,mBAAmB,EAAE;QACnB,QAAQ;QACR,QAAQ;QACR,SAAS;QACT,MAAM;QACN,aAAa;QACb,MAAM;QACN,QAAQ;QACR,SAAS;QACT,WAAW;QACX,MAAM;QACN,QAAQ;QACR,OAAO;QACP,UAAU;QACV,mBAAmB;KACpB;IAED,IAAI,EAAE,CAAC,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -31,7 +31,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
31
31
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
32
32
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
33
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
34
|
-
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"]>>;
|
|
34
|
+
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"]>>;
|
|
35
35
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
36
36
|
created_at: z.ZodString;
|
|
37
37
|
workspace_id: z.ZodString;
|
|
@@ -690,7 +690,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
690
690
|
issued_at?: string | null | undefined;
|
|
691
691
|
is_issued?: boolean | undefined;
|
|
692
692
|
acs_user_id?: string | undefined;
|
|
693
|
-
external_type?: "pti_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;
|
|
693
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
694
694
|
external_type_display_name?: string | undefined;
|
|
695
695
|
acs_credential_pool_id?: string | undefined;
|
|
696
696
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -843,7 +843,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
843
843
|
issued_at?: string | null | undefined;
|
|
844
844
|
is_issued?: boolean | undefined;
|
|
845
845
|
acs_user_id?: string | undefined;
|
|
846
|
-
external_type?: "pti_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;
|
|
846
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
847
847
|
external_type_display_name?: string | undefined;
|
|
848
848
|
acs_credential_pool_id?: string | undefined;
|
|
849
849
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -998,7 +998,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
998
998
|
issued_at?: string | null | undefined;
|
|
999
999
|
is_issued?: boolean | undefined;
|
|
1000
1000
|
acs_user_id?: string | undefined;
|
|
1001
|
-
external_type?: "pti_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;
|
|
1001
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
1002
1002
|
external_type_display_name?: string | undefined;
|
|
1003
1003
|
acs_credential_pool_id?: string | undefined;
|
|
1004
1004
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1159,7 +1159,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1159
1159
|
issued_at?: string | null | undefined;
|
|
1160
1160
|
is_issued?: boolean | undefined;
|
|
1161
1161
|
acs_user_id?: string | undefined;
|
|
1162
|
-
external_type?: "pti_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;
|
|
1162
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
1163
1163
|
external_type_display_name?: string | undefined;
|
|
1164
1164
|
acs_credential_pool_id?: string | undefined;
|
|
1165
1165
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1208,7 +1208,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1208
1208
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1209
1209
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1210
1210
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1211
|
-
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"]>>;
|
|
1211
|
+
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"]>>;
|
|
1212
1212
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1213
1213
|
created_at: z.ZodString;
|
|
1214
1214
|
workspace_id: z.ZodString;
|
|
@@ -1867,7 +1867,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1867
1867
|
issued_at?: string | null | undefined;
|
|
1868
1868
|
is_issued?: boolean | undefined;
|
|
1869
1869
|
acs_user_id?: string | undefined;
|
|
1870
|
-
external_type?: "pti_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;
|
|
1870
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
1871
1871
|
external_type_display_name?: string | undefined;
|
|
1872
1872
|
acs_credential_pool_id?: string | undefined;
|
|
1873
1873
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2020,7 +2020,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2020
2020
|
issued_at?: string | null | undefined;
|
|
2021
2021
|
is_issued?: boolean | undefined;
|
|
2022
2022
|
acs_user_id?: string | undefined;
|
|
2023
|
-
external_type?: "pti_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;
|
|
2023
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
2024
2024
|
external_type_display_name?: string | undefined;
|
|
2025
2025
|
acs_credential_pool_id?: string | undefined;
|
|
2026
2026
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2175,7 +2175,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2175
2175
|
issued_at?: string | null | undefined;
|
|
2176
2176
|
is_issued?: boolean | undefined;
|
|
2177
2177
|
acs_user_id?: string | undefined;
|
|
2178
|
-
external_type?: "pti_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;
|
|
2178
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
2179
2179
|
external_type_display_name?: string | undefined;
|
|
2180
2180
|
acs_credential_pool_id?: string | undefined;
|
|
2181
2181
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2336,7 +2336,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2336
2336
|
issued_at?: string | null | undefined;
|
|
2337
2337
|
is_issued?: boolean | undefined;
|
|
2338
2338
|
acs_user_id?: string | undefined;
|
|
2339
|
-
external_type?: "pti_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;
|
|
2339
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
2340
2340
|
external_type_display_name?: string | undefined;
|
|
2341
2341
|
acs_credential_pool_id?: string | undefined;
|
|
2342
2342
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2612,7 +2612,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2612
2612
|
issued_at?: string | null | undefined;
|
|
2613
2613
|
is_issued?: boolean | undefined;
|
|
2614
2614
|
acs_user_id?: string | undefined;
|
|
2615
|
-
external_type?: "pti_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;
|
|
2615
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
2616
2616
|
external_type_display_name?: string | undefined;
|
|
2617
2617
|
acs_credential_pool_id?: string | undefined;
|
|
2618
2618
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2804,7 +2804,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2804
2804
|
issued_at?: string | null | undefined;
|
|
2805
2805
|
is_issued?: boolean | undefined;
|
|
2806
2806
|
acs_user_id?: string | undefined;
|
|
2807
|
-
external_type?: "pti_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;
|
|
2807
|
+
external_type?: "pti_card" | "brivo_credential" | "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;
|
|
2808
2808
|
external_type_display_name?: string | undefined;
|
|
2809
2809
|
acs_credential_pool_id?: string | undefined;
|
|
2810
2810
|
parent_acs_credential_id?: string | undefined;
|