9 lines
360 B
TypeScript
9 lines
360 B
TypeScript
/** Public events for one character-scoped Private Zone actor. */
|
|
export type PrivateZoneEvent =
|
|
| { type: "PrivateZoneInit" }
|
|
| { type: "PrivateZoneRefresh" }
|
|
| { type: "PrivateZoneUnlockRequested"; albumId: string }
|
|
| { type: "PrivateZoneUnlockConfirmed" }
|
|
| { type: "PrivateZoneUnlockCancelled" }
|
|
| { type: "PrivateZoneUnlockPaywallConsumed" };
|