claim handle

This commit is contained in:
2023-04-17 22:22:00 +01:00
parent 766c1fe472
commit 6354fc3a17
6 changed files with 199 additions and 125 deletions

View File

@ -20,9 +20,10 @@ export interface InvoiceResponse {
export interface Subscription {
id: string;
type: SubscriptionType;
created: string;
expires: string;
created: number;
expires: number;
state: "new" | "expired" | "paid";
handle?: string;
}
export enum SubscriptionErrorCode {