All files / src/api types.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 0/0
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1x   1x           1x 1x                                                                                                                                                                                                                                                             1x                                                                                                        
// ==================== API Result Wrapper ====================
export interface ApiResult<T> {
  success: boolean;
  data: T;
  code: string;
  message: string | null;
  token?: string | null;
}
 
export interface PaginatedList<T> {
  page: number;
  pageSize: number;
  total: number;
  totalPages: number;
  list: T[];
}
 
/** MyBatis-Plus IPage response wrapper */
export interface PageResult<T> {
  records: T[];
  current: number;
  size: number;
  total: number;
  pages: number;
}
 
// ==================== Auth ====================
export interface LoginRequest {
  email: string;
  password: string;
  from?: string;
}
 
export interface RegisterRequest {
  email: string;
  password: string;
  code: string;
  username?: string;
}
 
export interface LoginResponse {
  id: number;
  email: string;
  username: string;
  avatar: string;
  userLevel: 'FREE' | 'PRO' | 'TEAM';
  createTime: string;
}
 
// ==================== User ====================
export interface UserProfile {
  id: number;
  email: string;
  username: string;
  avatar: string;
  userLevel: string;
  createTime: string;
}
 
export interface UserStatistics {
  totalTranslations: number;
  textTranslations: number;
  documentTranslations: number;
  totalCharacters: number;
  totalDocuments: number;
  weekTranslations: number;
  monthTranslations: number;
}
 
export interface UserQuota {
  userLevel: string;
  monthlyChars: number;
  usedThisMonth: number;
  remainingChars: number;
  concurrencyLimit: number;
  fastModeEquivalent: number;
  expertModeEquivalent: number;
  teamModeEquivalent: number;
}
 
export interface TranslationHistoryItem {
  id: number;
  taskId: string;
  type: string;
  sourceLang: string;
  targetLang: string;
  sourceTextPreview: string;
  targetTextPreview: string;
  createTime: string;
  status?: string;
  filename?: string;
}
 
// ==================== Translation ====================
export interface TranslateTextRequest {
  text: string;
  sourceLang: string;
  targetLang: string;
  mode?: string;
  engine?: string;
}
 
export interface TranslateTextResponse {
  translatedText: string;
  detectedLang: string;
  targetLang: string;
  engine: string;
  costTime: number;
}
 
export interface TaskStatus {
  taskId: string;
  type: string;
  status: string;
  progress: number;
  sourceLang: string;
  targetLang: string;
  createTime: string;
  completedTime: string | null;
  errorMessage: string | null;
  filename?: string;
}
 
export interface TranslationResult {
  taskId: string;
  content: string;
  sourceLang: string;
  targetLang: string;
}
 
// ==================== Documents ====================
export interface DocumentItem {
  id: number;
  name: string;
  fileName?: string;
  fileType: string;
  fileSize: number;
  sourceLang: string;
  targetLang: string;
  status: string;
  progress: number;
  createTime: string;
  completedTime: string | null;
  errorMessage: string | null;
  taskId?: string;
}
 
// ==================== Glossary ====================
export interface GlossaryItem {
  id: number;
  sourceWord: string;
  targetWord: string;
  remark: string;
  createTime: string;
}
 
// ==================== API Keys ====================
export interface ApiKeyItem {
  id: number;
  name: string;
  apiKey: string;
  active: boolean;
  lastUsedAt: string | null;
  totalUsage: number;
  createdAt: string;
}
 
// ==================== Preferences ====================
export interface UserPreferences {
  defaultEngine: string;
  defaultTargetLang: string;
  enableGlossary: boolean;
  defaultGlossaryId: number | null;
  enableCache: boolean;
  autoTranslateSelection: boolean;
  fontSize: number;
  themeMode: string;
}
 
// ==================== Platform ====================
export interface PlatformStats {
  totalUsers: number;
  activeUsersToday: number;
  activeUsersWeek: number;
  activeUsersMonth: number;
  totalTranslations: number;
  translationsToday: number;
  totalCharacters: number;
  totalDocumentTranslations: number;
  totalGlossaries: number;
  systemStatus: string;
}
 
// ==================== RAG ====================
export interface RagTranslationRequest {
  text: string;
  targetLang: string;
  sourceLang?: string;
  engine?: string;
}
export interface RagTranslationResponse {
  translatedText: string;
  engine: string;
  costTime: number;
  memoryMatches: number;
}
 
// ==================== External Translation ====================
export interface ExternalTranslateRequest {
  targetLang: string;
  sourceLang?: string;
  text: string;
  engine?: string;
}
export interface ExternalBatchTranslateRequest {
  targetLang: string;
  sourceLang?: string;
  engine?: string;
  texts: string[];
}
export interface ExternalTranslateResponse {
  translatedText: string;
  engine: string;
  costTime: number;
  sourceLang: string;
}
 
// ==================== Device Auth ====================
export interface DeviceTokenResponse {
  token: string;
  expiresIn: number;
}
 
// ==================== Supported Languages ====================
export const LANGUAGE_CODES = ['auto', 'zh', 'en', 'ja', 'ko', 'fr', 'de', 'es', 'ru', 'pt', 'it', 'th', 'vi'];
 
export const TRANSLATION_ENGINES = [
  { value: 'ai', label: 'ai' },
  { value: 'neural', label: 'neural' },
  { value: 'statistical', label: 'statistical' },
];
 
export const SUPPORTED_FILE_TYPES = ['.txt', '.epub', '.docx', '.pdf'];
export const MAX_FILE_SIZE = 50 * 1024 * 1024; // 50MB
 
// ==================== Collaboration ====================
export interface CollabProjectResponse {
  id: number;
  name: string;
  description: string;
  ownerId: number;
  ownerName: string;
  sourceLang: string;
  targetLang: string;
  status: string;
  progress: number;
  memberCount: number;
  totalChapters: number;
  completedChapters: number;
  createTime: string;
  updateTime: string;
}
 
export interface ChapterTaskResponse {
  id: number;
  chapterNumber: number;
  title: string;
  status: string;
  progress: number;
  assigneeId: number | null;
  assigneeName: string | null;
  reviewerId: number | null;
  reviewerName: string | null;
  reviewComment: string | null;
  sourceWordCount: number;
  targetWordCount: number;
  assignedTime: string | null;
  submittedTime: string | null;
  reviewedTime: string | null;
  completedTime: string | null;
  sourceText: string | null;
  translatedText: string | null;
}
 
export interface ProjectMemberResponse {
  id: number;
  userId: number;
  username: string;
  email: string;
  avatar: string;
  role: string;
  inviteStatus: string;
  joinedTime: string | null;
}
 
export interface CommentResponse {
  id: number;
  userId: number;
  username: string;
  avatar: string;
  sourceText: string | null;
  targetText: string | null;
  content: string;
  resolved: boolean;
  createTime: string;
  replies: CommentResponse[];
}
 
export interface CreateCollabProjectRequest {
  name: string;
  description: string;
  sourceLang: string;
  targetLang: string;
}
 
export interface AssignChapterRequest {
  assigneeId: number;
  reviewerId?: number;
}
 
export interface SubmitChapterRequest {
  translatedText: string;
}
 
export interface ReviewChapterRequest {
  approved: boolean;
  comment?: string;
}
 
export interface InviteMemberRequest {
  email: string;
  role: 'OWNER' | 'REVIEWER' | 'TRANSLATOR';
}
 
export interface CreateCommentRequest {
  sourceText?: string;
  targetText?: string;
  content: string;
  parentId?: number;
}
 
// ==================== Subscription ====================
export interface CheckoutSessionRequest {
  plan: string;
  billingCycle: string;
}
 
export interface CheckoutSessionResponse {
  checkoutUrl: string | null;
}
 
export interface SubscriptionStatusResponse {
  plan: string;
  status: string;
  periodEnd: string | null;
  cancelAtPeriodEnd: boolean;
}
 
export interface PortalSessionResponse {
  portalUrl: string;
}
 
export interface PaymentVerificationResponse {
  paid: boolean;
  sessionId: string;
  plan: string;
  status: string;
  message: string;
}
 
export const PLAN_CONFIGS = {
  FREE: {
    name: '免费版',
    price: '¥0',
    features: [
      '每日 100 次翻译',
      '5 并发翻译',
      '月 10,000 字符',
      '基础翻译引擎',
      '术语表管理',
    ],
    cta: '当前方案',
    highlighted: false,
  },
  PRO: {
    name: '专业版',
    price: '$5.99/月',
    priceMonthly: '$5.99/月',
    priceYearly: '$4.79/月',
    yearlyTotal: '$57.48/年',
    features: [
      '每日 1,000 次翻译',
      '20 并发翻译',
      '月 50,000 字符',
      'AI 翻译 + 神经网络',
      '翻译记忆库',
      '协作项目 3 个',
      '优先客服',
    ],
    cta: '订阅专业版',
    highlighted: true,
  },
  MAX: {
    name: '旗舰版',
    price: '$20/月',
    priceMonthly: '$20/月',
    priceYearly: '$16/月',
    yearlyTotal: '$192/年',
    features: [
      '无限翻译次数',
      '50 并发翻译',
      '月 200,000 字符',
      '全部翻译引擎',
      '翻译记忆库',
      '无限协作项目',
      '专属客服',
      'API 访问权限',
    ],
    cta: '订阅旗舰版',
    highlighted: false,
  },
};