@objectql/studio 1.3.1 → 1.4.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 +13 -0
- package/dist/assets/index-ClGKK4W3.css +1 -0
- package/dist/assets/index-sazuLrgQ.js +416 -0
- package/dist/index.html +2 -2
- package/package.json +13 -2
- package/postcss.config.cjs +6 -0
- package/src/App.tsx +22 -36
- package/src/components/FileEditor.tsx +95 -0
- package/src/components/Sidebar.tsx +97 -0
- package/src/components/ui/button.tsx +60 -0
- package/src/components/ui/card.tsx +76 -0
- package/src/hooks/use-metadata.ts +39 -0
- package/src/index.css +57 -21
- package/src/lib/utils.ts +6 -0
- package/src/pages/Dashboard.tsx +36 -0
- package/src/pages/ObjectView.tsx +179 -0
- package/src/pages/SchemaEditor.tsx +85 -0
- package/tailwind.config.cjs +77 -0
- package/tsconfig.json +5 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/vite.config.ts +6 -0
- package/dist/assets/index-BkeseS5P.js +0 -67
- package/dist/assets/index-YYlEozoH.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @objectql/studio
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Release version 1.4.0 with new features and enhancements:
|
|
8
|
+
- Added complete REST API implementation with CRUD operations
|
|
9
|
+
- Enhanced error handling with standardized error codes and HTTP status mapping
|
|
10
|
+
- Added AI context support for tracking intent and use cases
|
|
11
|
+
- Enhanced metadata API with detailed field information and action listing
|
|
12
|
+
- Improved JSON-RPC API with better error categorization
|
|
13
|
+
- Added hooks and actions validation and implementation
|
|
14
|
+
- Updated documentation and examples
|
|
15
|
+
|
|
3
16
|
## 1.3.1
|
|
4
17
|
|
|
5
18
|
## 0.2.0
|