Add new purchase API

This commit is contained in:
Jonas Lochmann
2022-09-26 02:00:00 +02:00
parent 35acd05d08
commit 58a6359a3e
18 changed files with 534 additions and 22 deletions
+11
View File
@@ -162,5 +162,16 @@ export interface SignInByMailCodeRequest {
receivedCode: string
}
export interface IdentityTokenCreatePayload {
purpose: 'purchase'
familyId: string
userId: string
mail: string
}
export type IdentityTokenPayload = IdentityTokenCreatePayload & {
exp: number
}
export { SerializedParentAction, SerializedChildAction, SerializedAppLogicAction } from '../action/serialization'
export { ServerDataStatus } from '../object/serverdatastatus'