manufacturer: ZodObject<{
    annotations: ZodArray<ZodObject<{
        annotation_code: ZodEnum<["subscription_required"]>;
        message: ZodString;
    }, "strip", ZodTypeAny, {
        annotation_code: "subscription_required";
        message: string;
    }, {
        annotation_code: "subscription_required";
        message: string;
    }>, "many">;
    device_model_count: ZodNumber;
    display_name: ZodString;
    integration: ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
    integration_support_level: ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>;
    is_connect_webview_supported: ZodBoolean;
    logo: ZodOptional<ZodObject<{
        height: ZodNumber;
        url: ZodString;
        width: ZodNumber;
    }, "strip", ZodTypeAny, {
        height: number;
        url: string;
        width: number;
    }, {
        height: number;
        url: string;
        width: number;
    }>>;
    manufacturer_id: ZodString;
    requires_seam_support_to_add_account: ZodBoolean;
}, "strip", ZodTypeAny, {
    annotations: {
        annotation_code: "subscription_required";
        message: string;
    }[];
    device_model_count: number;
    display_name: string;
    integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
    integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
    is_connect_webview_supported: boolean;
    logo?: {
        height: number;
        url: string;
        width: number;
    };
    manufacturer_id: string;
    requires_seam_support_to_add_account: boolean;
}, {
    annotations: {
        annotation_code: "subscription_required";
        message: string;
    }[];
    device_model_count: number;
    display_name: string;
    integration: "beta" | "stable" | "planned" | "unsupported" | "inquire";
    integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire";
    is_connect_webview_supported: boolean;
    logo?: {
        height: number;
        url: string;
        width: number;
    };
    manufacturer_id: string;
    requires_seam_support_to_add_account: boolean;
}> = ...

Type declaration

  • annotations: ZodArray<ZodObject<{
        annotation_code: ZodEnum<["subscription_required"]>;
        message: ZodString;
    }, "strip", ZodTypeAny, {
        annotation_code: "subscription_required";
        message: string;
    }, {
        annotation_code: "subscription_required";
        message: string;
    }>, "many">
  • device_model_count: ZodNumber
  • display_name: ZodString
  • integration: ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>

    Deprecated

  • integration_support_level: ZodEnum<["stable", "beta", "planned", "unsupported", "inquire"]>
  • is_connect_webview_supported: ZodBoolean
  • logo: ZodOptional<ZodObject<{
        height: ZodNumber;
        url: ZodString;
        width: ZodNumber;
    }, "strip", ZodTypeAny, {
        height: number;
        url: string;
        width: number;
    }, {
        height: number;
        url: string;
        width: number;
    }>>
  • manufacturer_id: ZodString
  • requires_seam_support_to_add_account: ZodBoolean

Type declaration

  • annotations: {
        annotation_code: "subscription_required";
        message: string;
    }[]
  • device_model_count: number
  • display_name: string
  • integration: "beta" | "stable" | "planned" | "unsupported" | "inquire"

    Deprecated

  • integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire"
  • is_connect_webview_supported: boolean
  • Optional logo?: {
        height: number;
        url: string;
        width: number;
    }
    • height: number
    • url: string
    • width: number
  • manufacturer_id: string
  • requires_seam_support_to_add_account: boolean

Type declaration

  • annotations: {
        annotation_code: "subscription_required";
        message: string;
    }[]
  • device_model_count: number
  • display_name: string
  • integration: "beta" | "stable" | "planned" | "unsupported" | "inquire"

    Deprecated

  • integration_support_level: "beta" | "stable" | "planned" | "unsupported" | "inquire"
  • is_connect_webview_supported: boolean
  • Optional logo?: {
        height: number;
        url: string;
        width: number;
    }
    • height: number
    • url: string
    • width: number
  • manufacturer_id: string
  • requires_seam_support_to_add_account: boolean

Generated using TypeDoc