feat: enhance terms acceptance response to include acceptance timestamp

This commit is contained in:
Marco Beretta 2025-12-07 04:04:26 +01:00
parent e49dad8209
commit 5d797f5394
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
3 changed files with 7 additions and 3 deletions

View file

@ -659,7 +659,8 @@ export type TUserTermsResponse = {
};
export type TAcceptTermsResponse = {
success: boolean;
message: string;
termsAcceptedAt: Date | string;
};
export type TBannerResponse = TBanner | null;