Skip to content

Latest commit

 

History

History
83 lines (59 loc) · 1.99 KB

File metadata and controls

83 lines (59 loc) · 1.99 KB

@objectstack/client-react

0.9.1

Patch Changes

  • Patch release for maintenance and stability improvements. All packages updated with unified versioning.
  • Updated dependencies
    • @objectstack/spec@0.9.1
    • @objectstack/core@0.9.1
    • @objectstack/client@0.9.1

0.8.2

Patch Changes

  • Updated dependencies [555e6a7]
    • @objectstack/spec@0.8.2
    • @objectstack/client@0.8.2
    • @objectstack/core@0.8.2

0.8.1

Patch Changes

  • @objectstack/spec@0.8.1
  • @objectstack/core@0.8.1
  • @objectstack/client@0.8.1

1.0.0

Minor Changes

  • Upgrade to Zod v4 and Protocol Improvements

    This release includes a major upgrade to the core validation engine (Zod v4) and aligns all protocol definitions with stricter type safety.

Patch Changes

  • Updated dependencies
    • @objectstack/spec@1.0.0
    • @objectstack/core@1.0.0
    • @objectstack/client@1.0.0

0.7.2

Patch Changes

  • fb41cc0: Patch release: Updated documentation and JSON schemas
  • Updated dependencies [fb41cc0]
    • @objectstack/spec@0.7.2
    • @objectstack/core@0.7.2
    • @objectstack/client@0.7.2

0.7.1

Patch Changes

  • Updated dependencies
    • @objectstack/spec@0.7.1
    • @objectstack/client@0.7.1
    • @objectstack/core@0.7.1

0.6.1

Added

  • Initial release of React hooks for ObjectStack Client
  • Data Query Hooks:
    • useQuery - Query data with automatic caching and refetching
    • useMutation - Create, update, or delete data
    • usePagination - Paginated data queries with navigation
    • useInfiniteQuery - Infinite scrolling / load more functionality
  • Metadata Hooks:
    • useObject - Fetch object schema/metadata
    • useView - Fetch view configuration
    • useFields - Get fields list from object schema
    • useMetadata - Generic metadata queries
  • Context Provider:
    • ObjectStackProvider - React context provider for ObjectStackClient
    • useClient - Access ObjectStackClient from context
  • Full TypeScript support with generic types
  • Comprehensive documentation and examples