@ysgroup/core 0.1.6 → 0.1.8

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/rest.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ysgroup/core",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -16,4 +16,4 @@
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  }
19
- }
19
+ }
package/src/rest.ts CHANGED
@@ -297,10 +297,10 @@ export interface TopologyNode {
297
297
  title: string;
298
298
  kind: "service" | "link";
299
299
  status: string;
300
- port: number;
301
300
  logo_url?: string;
302
301
  online: boolean;
303
302
  last_heartbeat_at: number;
304
- subscribed_tables: string[];
303
+ authorization_version: number;
304
+ authorized_tables: string[];
305
305
  heartbeat?: Record<string, unknown>;
306
306
  }