@seamapi/types - v1.461.0
    Preparing search index...

    Variable acs_systemConst

    acs_system: ZodObject<
        {
            acs_access_group_count: ZodOptional<ZodNumber>;
            acs_system_id: ZodString;
            acs_user_count: ZodOptional<ZodNumber>;
            connected_account_id: ZodString;
            connected_account_ids: ZodArray<ZodString, "many">;
            created_at: ZodString;
            default_credential_manager_acs_system_id: ZodOptional<
                ZodNullable<ZodString>,
            >;
            errors: ZodArray<
                ZodDiscriminatedUnion<
                    "error_code",
                    [
                        ZodObject<
                            { created_at: ZodString; message: ZodString } & {
                                error_code: ZodLiteral<"seam_bridge_disconnected">;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                created_at: string;
                                error_code: "seam_bridge_disconnected";
                                message: string;
                            },
                            {
                                created_at: string;
                                error_code: "seam_bridge_disconnected";
                                message: string;
                            },
                        >,
                        ZodObject<
                            { created_at: ZodString; message: ZodString } & {
                                error_code: ZodLiteral<"bridge_disconnected">;
                                is_bridge_error: ZodOptional<ZodBoolean>;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                created_at: string;
                                error_code: "bridge_disconnected";
                                is_bridge_error?: boolean;
                                message: string;
                            },
                            {
                                created_at: string;
                                error_code: "bridge_disconnected";
                                is_bridge_error?: boolean;
                                message: string;
                            },
                        >,
                        ZodObject<
                            { created_at: ZodString; message: ZodString } & {
                                error_code: ZodLiteral<"visionline_instance_unreachable">;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                created_at: string;
                                error_code: "visionline_instance_unreachable";
                                message: string;
                            },
                            {
                                created_at: string;
                                error_code: "visionline_instance_unreachable";
                                message: string;
                            },
                        >,
                    ],
                >,
                "many",
            >;
            external_type: ZodOptional<
                ZodEnum<
                    [
                        "pti_site",
                        "alta_org",
                        "salto_ks_site",
                        "salto_space_system",
                        "brivo_account",
                        "hid_credential_manager_organization",
                        "visionline_system",
                        "assa_abloy_credential_service",
                        "latch_building",
                        "dormakaba_community_site",
                    ],
                >,
            >;
            external_type_display_name: ZodOptional<ZodString>;
            image_alt_text: ZodString;
            image_url: ZodString;
            is_credential_manager: ZodBoolean;
            location: ZodObject<
                { time_zone: ZodNullable<ZodString> },
                "strip",
                ZodTypeAny,
                { time_zone: null | string },
                { time_zone: null | string },
            >;
            name: ZodString;
            system_type: ZodOptional<
                ZodEnum<
                    [
                        "pti_site",
                        "alta_org",
                        "salto_ks_site",
                        "salto_space_system",
                        "brivo_account",
                        "hid_credential_manager_organization",
                        "visionline_system",
                        "assa_abloy_credential_service",
                        "latch_building",
                        "dormakaba_community_site",
                    ],
                >,
            >;
            system_type_display_name: ZodOptional<ZodString>;
            visionline_metadata: ZodOptional<
                ZodObject<
                    {
                        lan_address: ZodString;
                        mobile_access_uuid: ZodString;
                        system_id: ZodString;
                    },
                    "strip",
                    ZodTypeAny,
                    { lan_address: string; mobile_access_uuid: string; system_id: string },
                    { lan_address: string; mobile_access_uuid: string; system_id: string },
                >,
            >;
            warnings: ZodArray<
                ZodDiscriminatedUnion<
                    "warning_code",
                    [
                        ZodObject<
                            { created_at: ZodString; message: ZodString } & {
                                warning_code: ZodLiteral<
                                    "salto_ks_subscription_limit_almost_reached",
                                >;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                created_at: string;
                                message: string;
                                warning_code: "salto_ks_subscription_limit_almost_reached";
                            },
                            {
                                created_at: string;
                                message: string;
                                warning_code: "salto_ks_subscription_limit_almost_reached";
                            },
                        >,
                        ZodObject<
                            { created_at: ZodString; message: ZodString } & {
                                misconfigured_acs_entrance_ids: ZodOptional<
                                    ZodArray<ZodString, "many">,
                                >;
                                warning_code: ZodLiteral<"time_zone_does_not_match_location">;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                created_at: string;
                                message: string;
                                misconfigured_acs_entrance_ids?: string[];
                                warning_code: "time_zone_does_not_match_location";
                            },
                            {
                                created_at: string;
                                message: string;
                                misconfigured_acs_entrance_ids?: string[];
                                warning_code: "time_zone_does_not_match_location";
                            },
                        >,
                    ],
                >,
                "many",
            >;
            workspace_id: ZodString;
        },
        "strip",
        ZodTypeAny,
        {
            acs_access_group_count?: number;
            acs_system_id: string;
            acs_user_count?: number;
            connected_account_id: string;
            connected_account_ids: string[];
            created_at: string;
            default_credential_manager_acs_system_id?: null
            | string;
            errors: (
                | {
                    created_at: string;
                    error_code: "seam_bridge_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "bridge_disconnected";
                    is_bridge_error?: boolean;
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "visionline_instance_unreachable";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "salto_ks_subscription_limit_exceeded";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "acs_system_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "account_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "salto_ks_certification_expired";
                    message: string;
                }
            )[];
            external_type?: | "assa_abloy_credential_service"
            | "assa_abloy_vostio"
            | "assa_abloy_vostio_credential_service"
            | "pti_site"
            | "alta_org"
            | "salto_ks_site"
            | "salto_space_system"
            | "brivo_account"
            | "hid_credential_manager_organization"
            | "visionline_system"
            | "latch_building"
            | "dormakaba_community_site"
            | "legic_connect_credential_service";
            external_type_display_name?: string;
            image_alt_text: string;
            image_url: string;
            is_credential_manager: boolean;
            location: { time_zone: null
            | string };
            name: string;
            system_type?:
                | "assa_abloy_credential_service"
                | "assa_abloy_vostio"
                | "assa_abloy_vostio_credential_service"
                | "pti_site"
                | "alta_org"
                | "salto_ks_site"
                | "salto_space_system"
                | "brivo_account"
                | "hid_credential_manager_organization"
                | "visionline_system"
                | "latch_building"
                | "dormakaba_community_site"
                | "legic_connect_credential_service";
            system_type_display_name?: string;
            visionline_metadata?: {
                lan_address: string;
                mobile_access_uuid: string;
                system_id: string;
            };
            warnings: (
                | {
                    created_at: string;
                    message: string;
                    warning_code: "salto_ks_subscription_limit_almost_reached";
                }
                | {
                    created_at: string;
                    message: string;
                    misconfigured_acs_entrance_ids?: string[];
                    warning_code: "time_zone_does_not_match_location";
                }
            )[];
            workspace_id: string;
        },
        {
            acs_access_group_count?: number;
            acs_system_id: string;
            acs_user_count?: number;
            connected_account_id: string;
            connected_account_ids: string[];
            created_at: string;
            default_credential_manager_acs_system_id?: null
            | string;
            errors: (
                | {
                    created_at: string;
                    error_code: "seam_bridge_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "bridge_disconnected";
                    is_bridge_error?: boolean;
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "visionline_instance_unreachable";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "salto_ks_subscription_limit_exceeded";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "acs_system_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "account_disconnected";
                    message: string;
                }
                | {
                    created_at: string;
                    error_code: "salto_ks_certification_expired";
                    message: string;
                }
            )[];
            external_type?: | "assa_abloy_credential_service"
            | "assa_abloy_vostio"
            | "assa_abloy_vostio_credential_service"
            | "pti_site"
            | "alta_org"
            | "salto_ks_site"
            | "salto_space_system"
            | "brivo_account"
            | "hid_credential_manager_organization"
            | "visionline_system"
            | "latch_building"
            | "dormakaba_community_site"
            | "legic_connect_credential_service";
            external_type_display_name?: string;
            image_alt_text: string;
            image_url: string;
            is_credential_manager: boolean;
            location: { time_zone: null
            | string };
            name: string;
            system_type?:
                | "assa_abloy_credential_service"
                | "assa_abloy_vostio"
                | "assa_abloy_vostio_credential_service"
                | "pti_site"
                | "alta_org"
                | "salto_ks_site"
                | "salto_space_system"
                | "brivo_account"
                | "hid_credential_manager_organization"
                | "visionline_system"
                | "latch_building"
                | "dormakaba_community_site"
                | "legic_connect_credential_service";
            system_type_display_name?: string;
            visionline_metadata?: {
                lan_address: string;
                mobile_access_uuid: string;
                system_id: string;
            };
            warnings: (
                | {
                    created_at: string;
                    message: string;
                    warning_code: "salto_ks_subscription_limit_almost_reached";
                }
                | {
                    created_at: string;
                    message: string;
                    misconfigured_acs_entrance_ids?: string[];
                    warning_code: "time_zone_does_not_match_location";
                }
            )[];
            workspace_id: string;
        },
    > = ...