Variable manufacturerConst
manufacturer: ZodObject<{
device_model_count: ZodNumber;
display_name: ZodString;
integration: 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, {
device_model_count: number;
display_name: string;
integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
is_connect_webview_supported: boolean;
logo?: { height: number; width: number; url: string; };
manufacturer_id: string;
requires_seam_support_to_add_account: boolean;
}, {
device_model_count: number;
display_name: string;
integration: "beta" | "stable" | "unsupported" | "planned" | "inquire";
is_connect_webview_supported: boolean;
logo?: { height: number; width: number; url: string; };
manufacturer_id: string;
requires_seam_support_to_add_account: boolean;
}> = ...
Type declaration
-
device_model_count: ZodNumber
-
display_name: ZodString
-
integration: 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
-
device_model_count: number
-
display_name: string
-
integration: "beta" | "stable" | "unsupported" | "planned" | "inquire"
-
is_connect_webview_supported: boolean
-
Optional
logo?: { height: number; width: number; url: string; }
-
manufacturer_id: string
-
requires_seam_support_to_add_account: boolean
Type declaration
-
device_model_count: number
-
display_name: string
-
integration: "beta" | "stable" | "unsupported" | "planned" | "inquire"
-
is_connect_webview_supported: boolean
-
Optional
logo?: { height: number; width: number; url: string; }
-
manufacturer_id: string
-
requires_seam_support_to_add_account: boolean