1
0
Fork 0
mirror of synced 2024-08-17 02:51:55 +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 a551532e73
commit 40b85fd206
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