Fix BigInt custom scalar type + lint issues

Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
Émile Ré
2026-01-02 11:30:12 +01:00
committed by Bryan Frimin
parent e80766509a
commit 4adb52cfc5
7 changed files with 13 additions and 13 deletions

View File

@@ -7,8 +7,8 @@ export interface TrustCenterAccess {
active: boolean;
hasAcceptedNonDisclosureAgreement: boolean;
createdAt: string;
lastTokenExpiresAt: string | null;
lastTokenExpiresAt?: string | null;
pendingRequestCount: number;
activeCount: number;
documentAccesses?: TrustCenterDocumentAccess[];
};
}