@dexteel/mesf-core 4.23.0 → 4.24.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/.github/workflows/release-please.yml +0 -6
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +19 -0
- package/dist/configuration/pages/realtime/client/index.d.ts +3 -0
- package/dist/configuration/pages/realtime/client/types.d.ts +15 -0
- package/dist/configuration/pages/realtime/config/index.d.ts +4 -0
- package/dist/index.esm.js +503 -203
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -1
|
@@ -32,12 +32,6 @@ jobs:
|
|
|
32
32
|
jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
|
|
33
33
|
done
|
|
34
34
|
|
|
35
|
-
- name: Delete and regenerate package-lock.json
|
|
36
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
37
|
-
run: |
|
|
38
|
-
find . -name "package-lock.json" -type f -delete
|
|
39
|
-
npm install
|
|
40
|
-
|
|
41
35
|
- name: Update CHANGELOG.md
|
|
42
36
|
if: ${{ steps.release.outputs.release_created }}
|
|
43
37
|
run: |
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.24.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.23.1...@dexteel/mesf-core-v4.24.0) (2025-02-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **RealTime:** add Client and Config components for RealTime ([93fca5d](https://github.com/dexteel/mesf-core-frontend/commit/93fca5dfc74b217f31c9c98653a39a529446b7c0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **Axios:** Show error message correctly ([8a6ed86](https://github.com/dexteel/mesf-core-frontend/commit/8a6ed86c8139a551664064aff706dbf004a871d2))
|
|
14
|
+
|
|
15
|
+
## [4.23.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.23.0...@dexteel/mesf-core-v4.23.1) (2025-02-03)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **API Service:** use axiosInstance inside callV2 method ([9647d1d](https://github.com/dexteel/mesf-core-frontend/commit/9647d1d22c7a8fbf7abc4b728c43ce9c35e6c8d3))
|
|
21
|
+
|
|
3
22
|
## [4.23.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.6...@dexteel/mesf-core-v4.23.0) (2025-02-03)
|
|
4
23
|
|
|
5
24
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ChatMessage {
|
|
2
|
+
user: string;
|
|
3
|
+
message: string;
|
|
4
|
+
timestamp: Date;
|
|
5
|
+
}
|
|
6
|
+
export interface SignalRMethods {
|
|
7
|
+
ReceiveMessage: (user: string, message: string) => void;
|
|
8
|
+
UserConnected: (connectionId: string) => void;
|
|
9
|
+
UserDisconnected: (connectionId: string) => void;
|
|
10
|
+
}
|
|
11
|
+
export interface ConnectionState {
|
|
12
|
+
isConnected: boolean;
|
|
13
|
+
connectionId?: string;
|
|
14
|
+
error?: Error;
|
|
15
|
+
}
|