We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf477f commit 40a7e15Copy full SHA for 40a7e15
src/ps-web-apis.ts
@@ -278,8 +278,19 @@ export interface WaitingRoomV1 {
278
waitForCapacity: WaitForCapacity;
279
}
280
281
+
282
+export interface UnlockedContent {
283
+ type: 'article';
284
+ id: string;
285
+}
286
287
+export interface UnlockedContentResult {
288
+ content: UnlockedContent[];
289
290
291
export interface WalletV1 {
292
getUserCreditBalance: GetUserCreditBalance;
293
+ getUserUnlockedContent: () => Promise<UnlockedContentResult>;
294
295
296
export type ILayer = "privacy" | "reject";
0 commit comments