| 1 | import { Page } from '@playwright/test'; |
| 2 | |
| 3 | export interface MockSecretResponse { |
| 4 | message: string; |
| 5 | key?: string; |
| 6 | one_time?: boolean; |
| 7 | expiration?: number; |
| 8 | receipt_token?: string; |
| 9 | } |
| 10 | |
| 11 | export interface MockReceiptResponse { |
| 12 | state: 'pending' | 'viewed'; |
nothing calls this directly
no outgoing calls
no test coverage detected