@objectstack/client 0.9.1 → 0.9.2
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 +8 -0
- package/README.md +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -12,6 +12,17 @@ The official TypeScript client for ObjectStack.
|
|
|
12
12
|
- **View Storage**: Save, load, and share custom UI view configurations.
|
|
13
13
|
- **Standardized Errors**: Machine-readable error codes with retry guidance.
|
|
14
14
|
|
|
15
|
+
## 🤖 AI Development Context
|
|
16
|
+
|
|
17
|
+
**Role**: Browser/Node Client SDK
|
|
18
|
+
**Usage**:
|
|
19
|
+
- Use this in Frontend Apps (React, etc.) or external Node scripts.
|
|
20
|
+
- Interacts with `packages/runtime` over HTTP.
|
|
21
|
+
|
|
22
|
+
**Key namespaces**:
|
|
23
|
+
- `client.meta`: Metadata operations.
|
|
24
|
+
- `client.data`: Data operations.
|
|
25
|
+
|
|
15
26
|
## Installation
|
|
16
27
|
|
|
17
28
|
```bash
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/client",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Official Client SDK for ObjectStack Protocol",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@objectstack/spec": "0.9.
|
|
9
|
-
"@objectstack/core": "0.9.
|
|
8
|
+
"@objectstack/spec": "0.9.2",
|
|
9
|
+
"@objectstack/core": "0.9.2"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"typescript": "^5.0.0",
|