Files
cozsweet-frontend-nextjs/src/stores/private-zone/private-zone-events.ts
T
Codex 0357fbcaff
Docker Image / Build and Push Docker Image (push) Successful in 2m7s
refactor(private-zone): use canonical product name
2026-07-23 10:55:47 +08:00

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" };