diff --git a/src/ps-web-apis.ts b/src/ps-web-apis.ts index f521a20..0732f05 100644 --- a/src/ps-web-apis.ts +++ b/src/ps-web-apis.ts @@ -278,8 +278,19 @@ export interface WaitingRoomV1 { waitForCapacity: WaitForCapacity; } + +export interface UnlockedContent { + type: 'article'; + id: string; +} + +export interface UnlockedContentResult { + content: UnlockedContent[]; +} + export interface WalletV1 { getUserCreditBalance: GetUserCreditBalance; + getUserUnlockedContent: () => Promise; } export type ILayer = "privacy" | "reject";