Skip to content

Commit 4cd1e7e

Browse files
refactor: 🔨 follow ts-package renaming
1 parent 945ab50 commit 4cd1e7e

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

‎CLAUDE.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Documentation is built using DocFX and deployed to GitHub Pages. The documentati
5454

5555
1. **JsonApiController** (`Controllers/JsonApiController.cs`)
5656
- Base controller for JSON:API endpoints
57-
- Provides methods: `JsonApiOk()`, `JsonApiOkAsync()`, `JsonApiCreated()`, `JsonApiNotFound()`, etc.
57+
- Provides methods: `JsonApiOk()`, `JsonApiQueryAsync()`, `JsonApiCreated()`, `JsonApiNotFound()`, etc.
5858
- Handles query parameter parsing and response formatting
5959
- Automatically applies filtering, sorting, pagination, and includes (filtering applies to main entity; includes load related resources)
6060

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- name: react-tools
2-
href: react-tools.md
1+
- name: ts-tools
2+
href: ts-tools.md
33
- name: open-api
44
href: open-api.md
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Integrations / Frontend Consumption
22

3-
# jsonapi-react-tools
3+
# jsonapi-ts-tools
44

5-
**jsonapi-react-tools** is a lightweight, Deno-based TypeScript library designed
5+
**jsonapi-ts-tools** is a lightweight, Deno-based TypeScript library designed
66
to make working with
77
[JsonApiToolkit](https://github.com/intility/Intility.JsonApiToolkit) responses
8-
in React applications easier.
8+
in TypeScript applications easier.
99

1010
## Features
1111

@@ -19,12 +19,12 @@ in React applications easier.
1919

2020
## Getting Started
2121

22-
You can read more about jsonapi-react-tools & JsonApiToolkit [**here**](https://intility.github.io/Intility.JsonApiToolkit/docs/integrations/react-tools.html), or follow the instructions below for a quick start.
22+
You can read more about jsonapi-ts-tools & JsonApiToolkit [**here**](https://intility.github.io/Intility.JsonApiToolkit/docs/integrations/ts-tools.html), or follow the instructions below for a quick start.
2323

2424
### Installation
2525

2626
```bash
27-
npm install @intility/jsonapi-react-tools
27+
npm install @intility/jsonapi-ts-tools
2828
```
2929

3030
### Define your types
@@ -63,7 +63,7 @@ import {
6363
HydratedQueryResult,
6464
hydrateResponse,
6565
JsonApiResponse,
66-
} from '@intility/jsonapi-react-tools';
66+
} from '@intility/jsonapi-ts-tools';
6767

6868
export function useHydratedQuery<THydrated>(
6969
queryKey: QueryKey,
@@ -195,5 +195,5 @@ filter[completed]=false
195195

196196
For more details on the package itself, visit the repository:
197197

198-
* **GitHub:** [jsonapi-react-tools](https://github.com/intility/jsonapi-react-tools)
198+
* **GitHub:** [jsonapi-ts-tools](https://github.com/intility/jsonapi-ts-tools)
199199

0 commit comments

Comments
 (0)