@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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @objectstack/client
2
2
 
3
+ ## 0.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @objectstack/spec@0.9.2
9
+ - @objectstack/core@0.9.2
10
+
3
11
  ## 0.9.1
4
12
 
5
13
  ### Patch Changes
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.1",
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.1",
9
- "@objectstack/core": "0.9.1"
8
+ "@objectstack/spec": "0.9.2",
9
+ "@objectstack/core": "0.9.2"
10
10
  },
11
11
  "devDependencies": {
12
12
  "typescript": "^5.0.0",