Chore: Fix times in schemas (#64906)

* Fix times in schemas

* Fix frontend lints
This commit is contained in:
Selene
2023-03-21 10:42:19 +01:00
committed by GitHub
parent 9ca01cc070
commit 1328a32a31
16 changed files with 57 additions and 36 deletions

View File

@@ -26,7 +26,7 @@ export interface ServiceAccount {
/**
* Created indicates when the service account was created.
*/
created?: number;
created?: string;
/**
* ID is the unique identifier of the service account in the database.
*/
@@ -63,7 +63,7 @@ export interface ServiceAccount {
/**
* Updated indicates when the service account was updated.
*/
updated?: number;
updated?: string;
}
export const defaultServiceAccount: Partial<ServiceAccount> = {

View File

@@ -27,7 +27,7 @@ export interface Team {
/**
* Created indicates when the team was created.
*/
created: number;
created: string;
/**
* Email of the team.
*/
@@ -51,5 +51,5 @@ export interface Team {
/**
* Updated indicates when the team was updated.
*/
updated: number;
updated: string;
}