fix types - make snowflakes a string
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 19s
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 19s
This commit is contained in:
parent
30f5e779de
commit
7301ff7ac3
@ -28,7 +28,7 @@ export type Organization = {
|
||||
* The snowflake of the {@link User}
|
||||
* that owns this organization.
|
||||
*/
|
||||
ownerSnowflake: number;
|
||||
ownerSnowflake: string;
|
||||
|
||||
/**
|
||||
* The status pages owned by this organization.
|
||||
|
@ -5,7 +5,7 @@ export type StatusPage = {
|
||||
/**
|
||||
* The snowflake id of this status page.
|
||||
*/
|
||||
snowflake: bigint;
|
||||
snowflake: string;
|
||||
|
||||
/**
|
||||
* The name of this status page.
|
||||
@ -46,5 +46,5 @@ export type StatusPage = {
|
||||
* The snowflake of the {@link Organization}
|
||||
* that owns this status page.
|
||||
*/
|
||||
orgSnowflake: boolean;
|
||||
orgSnowflake: string;
|
||||
};
|
||||
|
@ -2,7 +2,7 @@ export type User = {
|
||||
/**
|
||||
* The snowflake id of this user.
|
||||
*/
|
||||
snowflake: bigint;
|
||||
snowflake: string;
|
||||
|
||||
/**
|
||||
* This user's email.
|
||||
|
Loading…
x
Reference in New Issue
Block a user