mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 19:04:23 +08:00
bf9cb9af41
实现SECTL云服务的全面集成,包括: 1. 添加OAuth认证服务,支持PKCE流程 2. 实现云存储管理功能 3. 添加积分数据同步服务 4. 实现通知服务和KV存储服务 5. 添加多语言支持 6. 创建相关React组件和上下文 7. 更新依赖项添加crypto-js 8. 优化HTTP客户端重用
25 lines
683 B
TypeScript
25 lines
683 B
TypeScript
/**
|
|
* SECTL 服务统一导出
|
|
*/
|
|
|
|
export { sectlAuth, SECTL_CONFIG } from "./sectlAuth"
|
|
|
|
export type { TokenData, UserInfo } from "./sectlAuth"
|
|
|
|
export { sectlCloudStorage } from "./sectlCloudStorage"
|
|
|
|
export type { CloudFile, ShareLink, StorageUsage } from "./sectlCloudStorage"
|
|
|
|
export { sectlKVStorage } from "./sectlKVStorage"
|
|
|
|
export type { KVData } from "./sectlCloudStorage"
|
|
|
|
export { sectlNotification } from "./sectlNotification"
|
|
|
|
export type { Notification, SendNotificationParams } from "./sectlNotification"
|
|
|
|
// 积分数据同步服务
|
|
export { scoreSyncService } from "./scoreSyncService"
|
|
|
|
export type { ScoreData, ScoreEvent, SyncedData } from "./scoreSyncService"
|