Docs

Metadata

This reference contains types related to metadata.

If you want to provide custom types for any of these types, you can redeclare them in the global namespace. See the guide on custom types for more information.

OrganizationPublicMetadata

A type that represents the public metadata for an organization.

interface OrganizationPublicMetadata {
  [k: string]: unknown
}

OrganizationPrivateMetadata

A type that represents the private metadata for an organization.

interface OrganizationPrivateMetadata {
  [k: string]: unknown
}

OrganizationInvitationPublicMetadata

A type that represents the public metadata for an organization invitation.

interface OrganizationInvitationPublicMetadata {
  [k: string]: unknown
}

OrganizationInvitationPrivateMetadata

A type that represents the private metadata for an organization invitation.

interface OrganizationInvitationPrivateMetadata {
  [k: string]: unknown
}

OrganizationMembershipPublicMetadata

A type that represents the public metadata for an organization membership.

interface OrganizationMembershipPublicMetadata {
  [k: string]: unknown
}

OrganizationMembershipPrivateMetadata

A type that represents the private metadata for an organization membership.

interface OrganizationMembershipPrivateMetadata {
  [k: string]: unknown
}

SignUpUnsafeMetadata

A type that represents the unsafe metadata for a sign-up.

interface SignUpUnsafeMetadata {
  [k: string]: unknown
}

UserOrganizationInvitationPublicMetadata

A type that represents the public metadata for a user organization invitation.

interface UserOrganizationInvitationPublicMetadata {
  [k: string]: unknown
}

UserPublicMetadata

A type that represents the public metadata for a user.

interface UserPublicMetadata {
  [k: string]: unknown
}

UserPrivateMetadata

A type that represents the private metadata for a user.

interface UserPrivateMetadata {
  [k: string]: unknown
}

UserUnsafeMetadata

A type that represents the unsafe metadata for a user.

interface UserUnsafeMetadata {
  [k: string]: unknown
}

Feedback

What did you think of this content?

Last updated on