meyi-insight-ui-dev 1.0.12 → 1.0.13
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/dist/features/connectors/connector.service.d.ts +10 -0
- package/dist/index.js +88 -88
- package/dist/index.mjs +8758 -8658
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -14,4 +14,14 @@ export declare const connectorService: {
|
|
|
14
14
|
* Gets the topology discovery status from the topology API.
|
|
15
15
|
*/
|
|
16
16
|
getDiscoveryStatus: (connectorId: string) => Promise<string | null>;
|
|
17
|
+
/**
|
|
18
|
+
* POST /discover
|
|
19
|
+
* Manually trigger a topology discovery for the given connector.
|
|
20
|
+
*/
|
|
21
|
+
triggerDiscovery: (connectorId: string) => Promise<boolean>;
|
|
22
|
+
/**
|
|
23
|
+
* GET /export/:connectorId
|
|
24
|
+
* Export the complete topology map as JSON for the given connector.
|
|
25
|
+
*/
|
|
26
|
+
exportTopology: (connectorId: string) => Promise<Blob | null>;
|
|
17
27
|
};
|