TeamSchema: ZodObject<
{
creatorId: ZodOptional<ZodNullable<ZodString>>;
description: ZodString;
displayName: ZodString;
externalReference: ZodOptional<
ZodNullable<
ZodObject<
{
id: ZodString;
source: ZodCustom<
string & {}
| "ATLASSIAN_GROUP"
| "HRIS",
string & {} | "ATLASSIAN_GROUP" | "HRIS",
>;
},
$loose,
>,
>,
>;
organizationId: ZodString;
state: ZodCustom<
string & {}
| "ACTIVE"
| "ARCHIVED",
string & {} | "ACTIVE" | "ARCHIVED",
>;
teamId: ZodString;
teamType: ZodCustom<
| string & {}
| "EXTERNAL"
| "OPEN"
| "MEMBER_INVITE"
| "ORG_ADMIN_MANAGED",
string & {}
| "EXTERNAL"
| "OPEN"
| "MEMBER_INVITE"
| "ORG_ADMIN_MANAGED",
>;
},
$loose,
> = ...