@ysgroup/core 0.1.0 → 0.1.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/package.json +1 -4
- package/src/rest.ts +2 -1
package/package.json
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ysgroup/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
7
|
-
"dependencies": {
|
|
8
|
-
"@ysgroup/contracts": "0.1.1"
|
|
9
|
-
},
|
|
10
7
|
"peerDependencies": {
|
|
11
8
|
"pinia": ">=2.2",
|
|
12
9
|
"vue": ">=3.5"
|
package/src/rest.ts
CHANGED
|
@@ -217,9 +217,10 @@ export class YsRest {
|
|
|
217
217
|
export interface TopologyNode {
|
|
218
218
|
name: string;
|
|
219
219
|
title: string;
|
|
220
|
-
kind:
|
|
220
|
+
kind: "service" | "link";
|
|
221
221
|
status: string;
|
|
222
222
|
port: number;
|
|
223
|
+
logo_url?: string;
|
|
223
224
|
online: boolean;
|
|
224
225
|
last_heartbeat_at: number;
|
|
225
226
|
subscribed_tables: string[];
|