You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: simplify upload request structure and remove user_id fields
Refactor the code upload request interface to use a single unified structure instead
of separate CSV and JSON variants. Remove user_id fields from multiple template types
to simplify the data model and improve API consistency.
Key changes:
- Consolidate UploadRequest from discriminated union to single interface with format field
- Remove user_id fields from ChatMessageTemplate, ChatSessionTemplate, and other templates
- Move UploadRequest from types to client/requests directory
- Update documentation and test fixtures to reflect simplified structure
- Maintain backward compatibility for upload functionality
🌿 Generated with Fern
Copy file name to clipboardExpand all lines: changelog.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,16 @@
1
+
## 6.0.0 - 2026-02-10
2
+
* refactor: simplify upload request structure and remove user_id fields
3
+
* Refactor the code upload request interface to use a single unified structure instead
4
+
* of separate CSV and JSON variants. Remove user_id fields from multiple template types
5
+
* to simplify the data model and improve API consistency.
6
+
* Key changes:
7
+
* Consolidate UploadRequest from discriminated union to single interface with format field
8
+
* Remove user_id fields from ChatMessageTemplate, ChatSessionTemplate, and other templates
9
+
* Move UploadRequest from types to client/requests directory
10
+
* Update documentation and test fixtures to reflect simplified structure
11
+
* Maintain backward compatibility for upload functionality
12
+
* 🌿 Generated with Fern
13
+
1
14
## 5.3.0 - 2026-02-09
2
15
* feat: add custom code system export endpoint
3
16
* Add new exportCustomCodeSystem method to the construe client that allows exporting custom (non-builtin) code systems as JSON files. This feature enables users to backup and transfer code systems between instances.
0 commit comments