@objectstack/client-react 0.9.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/README.md +7 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @objectstack/client-react
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Major version release for ObjectStack Protocol v1.0.
|
|
8
|
+
- Stabilized Protocol Definitions
|
|
9
|
+
- Enhanced Runtime Plugin Support
|
|
10
|
+
- Fixed Type Compliance across Monorepo
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @objectstack/spec@1.0.0
|
|
16
|
+
- @objectstack/core@1.0.0
|
|
17
|
+
- @objectstack/client@1.0.0
|
|
18
|
+
|
|
19
|
+
## 0.9.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @objectstack/spec@0.9.2
|
|
25
|
+
- @objectstack/client@0.9.2
|
|
26
|
+
- @objectstack/core@0.9.2
|
|
27
|
+
|
|
3
28
|
## 0.9.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
React hooks for ObjectStack Client SDK - Type-safe data fetching and mutations for React applications.
|
|
4
4
|
|
|
5
|
+
## 🤖 AI Development Context
|
|
6
|
+
|
|
7
|
+
**Role**: React Bindings for Client SDK
|
|
8
|
+
**Usage**:
|
|
9
|
+
- Use `useQuery`, `useMutation` hooks.
|
|
10
|
+
- Similar to TanStack Query but specialized for ObjectStack.
|
|
11
|
+
|
|
5
12
|
## Installation
|
|
6
13
|
|
|
7
14
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/client-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
4
5
|
"description": "React hooks for ObjectStack Client SDK",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
@@ -8,9 +9,9 @@
|
|
|
8
9
|
"react": ">=18.0.0"
|
|
9
10
|
},
|
|
10
11
|
"dependencies": {
|
|
11
|
-
"@objectstack/client": "0.
|
|
12
|
-
"@objectstack/spec": "0.
|
|
13
|
-
"@objectstack/core": "0.
|
|
12
|
+
"@objectstack/client": "1.0.0",
|
|
13
|
+
"@objectstack/spec": "1.0.0",
|
|
14
|
+
"@objectstack/core": "1.0.0"
|
|
14
15
|
},
|
|
15
16
|
"devDependencies": {
|
|
16
17
|
"@types/react": "^18.0.0",
|