fix types - make snowflakes a string
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 19s

This commit is contained in:
Braydon 2024-09-18 23:35:13 -04:00
parent 30f5e779de
commit 7301ff7ac3
3 changed files with 4 additions and 4 deletions

@ -28,7 +28,7 @@ export type Organization = {
* The snowflake of the {@link User} * The snowflake of the {@link User}
* that owns this organization. * that owns this organization.
*/ */
ownerSnowflake: number; ownerSnowflake: string;
/** /**
* The status pages owned by this organization. * The status pages owned by this organization.

@ -5,7 +5,7 @@ export type StatusPage = {
/** /**
* The snowflake id of this status page. * The snowflake id of this status page.
*/ */
snowflake: bigint; snowflake: string;
/** /**
* The name of this status page. * The name of this status page.
@ -46,5 +46,5 @@ export type StatusPage = {
* The snowflake of the {@link Organization} * The snowflake of the {@link Organization}
* that owns this status page. * that owns this status page.
*/ */
orgSnowflake: boolean; orgSnowflake: string;
}; };

@ -2,7 +2,7 @@ export type User = {
/** /**
* The snowflake id of this user. * The snowflake id of this user.
*/ */
snowflake: bigint; snowflake: string;
/** /**
* This user's email. * This user's email.