1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00

Remove active user pricing and custom invoicing

This commit is contained in:
Rory Powell 2022-09-14 11:32:11 +01:00
parent d72494e44b
commit f72c53b461
2 changed files with 0 additions and 20 deletions

View file

@ -1,12 +1,3 @@
export interface PutAccountUser {
createdAt: number
}
export interface PutAccountUserResponse {
userId: string
createdAt: number
}
export interface PostAccountUserActivity {
timestamp: number
}

View file

@ -1,14 +1,3 @@
export interface SaveAccountUser {
accountId: string
userId: string
createdAt: number
deletedAt?: number
}
export interface AccountUser extends SaveAccountUser {
tenantId: string // for backwards compatibility with the accounts table. Really this is a USER#<id>
}
export interface CreateAccountUserActivity {
accountId: string
userId: string