cherry-studio/packages/shared/data/api
fullex b01113aae6 feat: enhance pagination support in API types and hooks
- Introduced new pagination types and interfaces, including `PaginationMode`, `BasePaginatedResponse`, `OffsetPaginatedResponse`, and `CursorPaginatedResponse`, to standardize pagination handling.
- Updated `useDataApi` hook to support both offset and cursor-based pagination, improving data fetching capabilities.
- Added `useInfiniteQuery` and `usePaginatedQuery` hooks for better management of paginated data, including loading states and pagination controls.
- Refactored existing pagination logic to improve clarity and maintainability, ensuring consistent handling of pagination across the application.
2026-01-04 15:52:18 +08:00
..
schemas feat: enhance CreateMessageDto and MessageService for improved parentId handling 2026-01-03 22:47:44 +08:00
apiErrors.ts feat(api): implement message branching API with tree structure support 2025-12-28 12:54:06 +08:00
apiPaths.ts refactor(dataApi): streamline Data API schema and type definitions 2025-12-26 12:52:32 +08:00
apiTypes.ts feat: enhance pagination support in API types and hooks 2026-01-04 15:52:18 +08:00
index.ts feat(api): implement message branching API with tree structure support 2025-12-28 12:54:06 +08:00
README.md docs(data): update README and remove outdated API design guidelines 2025-12-29 17:15:06 +08:00

Data API Type System

This directory contains type definitions for the DataApi system.

Documentation

Directory Structure

packages/shared/data/api/
├── index.ts           # Barrel exports
├── apiTypes.ts        # Core request/response types
├── apiPaths.ts        # Path template utilities
├── apiErrors.ts       # Error handling
└── schemas/
    ├── index.ts       # Schema composition
    └── *.ts           # Domain-specific schemas

Quick Reference

Import Conventions

// Infrastructure types (via barrel)
import type { DataRequest, DataResponse, ApiClient } from '@shared/data/api'
import { ErrorCode, DataApiError, DataApiErrorFactory } from '@shared/data/api'

// Domain DTOs (directly from schema files)
import type { Topic, CreateTopicDto } from '@shared/data/api/schemas/topic'
import type { Message, CreateMessageDto } from '@shared/data/api/schemas/message'

Adding New Schemas

  1. Create schema file in schemas/ (e.g., topic.ts)
  2. Register in schemas/index.ts using intersection type
  3. Implement handlers in src/main/data/api/handlers/