fix: migrate billing to RR7

This commit is contained in:
David Nguyen
2025-02-21 01:16:23 +11:00
parent 991ce5ff46
commit 139bc265c7
10 changed files with 456 additions and 15 deletions

View File

@ -23,6 +23,7 @@ export type SessionUser = Pick<
| 'roles'
| 'signature'
| 'url'
| 'customerId'
>;
export type SessionValidationResult =
@ -99,6 +100,7 @@ export const validateSessionToken = async (token: string): Promise<SessionValida
roles: true,
signature: true,
url: true,
customerId: true,
},
},
},