Site: ZodObject<
{
createdDateTime: ZodString;
description: ZodString;
displayName: ZodString;
id: ZodString;
lastModifiedDateTime: ZodString;
name: ZodString;
root: ZodObject<{}, "strip", ZodTypeAny, {}, {}>;
siteCollection: ZodObject<
{ hostname: ZodString },
"strip",
ZodTypeAny,
{ hostname?: string },
{ hostname?: string },
>;
webUrl: ZodString;
},
"strip",
ZodTypeAny,
{
createdDateTime?: string;
description?: string;
displayName?: string;
id?: string;
lastModifiedDateTime?: string;
name?: string;
root?: {};
siteCollection?: { hostname?: string };
webUrl?: string;
},
{
createdDateTime?: string;
description?: string;
displayName?: string;
id?: string;
lastModifiedDateTime?: string;
name?: string;
root?: {};
siteCollection?: { hostname?: string };
webUrl?: string;
},
> = ...