@dexteel/mesf-core 4.23.1 → 4.24.1
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 +25 -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.d.ts +1 -0
- package/dist/index.esm.js +392 -71
- 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,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.24.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.24.0...@dexteel/mesf-core-v4.24.1) (2025-02-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **RealTime:** expose signalR from mesf-core ([584f37c](https://github.com/dexteel/mesf-core-frontend/commit/584f37ce60c649241c2e4ed0a00c35cc19ffbe6b))
|
|
9
|
+
|
|
10
|
+
## [4.24.0] - 2025-02-04
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
## [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)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **RealTime:** add Client and Config components for RealTime ([93fca5d](https://github.com/dexteel/mesf-core-frontend/commit/93fca5dfc74b217f31c9c98653a39a529446b7c0))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* **Axios:** Show error message correctly ([8a6ed86](https://github.com/dexteel/mesf-core-frontend/commit/8a6ed86c8139a551664064aff706dbf004a871d2))
|
|
27
|
+
|
|
3
28
|
## [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)
|
|
4
29
|
|
|
5
30
|
|
|
@@ -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
|
+
}
|
package/dist/index.d.ts
CHANGED