@buerokratt-ria/common-gui-components 0.0.28 → 0.0.29

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
@@ -4,6 +4,10 @@ All changes to this project will be documented in this file.
4
4
 
5
5
  ## Template [MajorVersion.MediterraneanVersion.MinorVersion] - DD-MM-YYYY
6
6
 
7
+ ## [0.0.29] - 03-11-2025
8
+
9
+ - Added Language to chats/ended/download
10
+
7
11
  ## [0.0.28] - 03-10-2025
8
12
 
9
13
  - Defined new endpoint specifically for ended chats. REACT_APP_RUUTER_PRIVATE_ENDED_API_URL
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buerokratt-ria/common-gui-components",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Common GUI components and pre defined templates.",
5
5
  "main": "index.ts",
6
6
  "author": "ExiRai",
@@ -921,7 +921,7 @@ const ChatHistory: FC<PropsWithChildren<HistoryProps>> = ({
921
921
  );
922
922
 
923
923
  const response = await apiDevEnded.post('chats/ended/download', {
924
- headers, rows, chatIds
924
+ headers, rows, chatIds, language: i18n.language
925
925
  });
926
926
 
927
927