| 47 | |
| 48 | /** 订单数据(后端存储结构) */ |
| 49 | export interface OrderRaw { |
| 50 | uuid: string; |
| 51 | mail: string; |
| 52 | sign: string; |
| 53 | type: string; |
| 54 | auto: boolean | number; |
| 55 | flag: number; |
| 56 | time: number; |
| 57 | next: number; |
| 58 | main: string; // JSON 字符串 |
| 59 | list: string; // JSON 字符串(DomainItem[]) |
| 60 | keys: string; |
| 61 | cert: string; |
| 62 | text: string; |
| 63 | data?: string; |
| 64 | } |
| 65 | |
| 66 | /** 订单(解析后) */ |
| 67 | export interface Order extends Omit<OrderRaw, 'main' | 'list' | 'data'> { |
nothing calls this directly
no outgoing calls
no test coverage detected