@oneuptime/common 7.0.2478 → 7.0.2482

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.
@@ -1,12 +1,18 @@
1
+ import Hostname from '../API/Hostname';
2
+ import URL from '../API/URL';
1
3
  import Dictionary from '../Dictionary';
4
+ import IP from '../IP/IP';
2
5
  import { JSONObject } from '../JSON';
3
6
  import CustomCodeMonitorResponse from '../Monitor/CustomCodeMonitor/CustomCodeMonitorResponse';
4
7
  import SslMonitorResponse from '../Monitor/SSLMonitor/SslMonitorResponse';
5
8
  import SyntheticMonitorResponse from '../Monitor/SyntheticMonitors/SyntheticMonitorResponse';
6
9
  import ObjectID from '../ObjectID';
10
+ import Port from '../Port';
7
11
 
8
12
  export default interface ProbeMonitorResponse {
9
13
  isOnline?: boolean | undefined;
14
+ monitorDestination?: URL | IP | Hostname | undefined;
15
+ monitorDestinationPort?: Port | undefined;
10
16
  responseTimeInMs?: number | undefined;
11
17
  responseCode?: number | undefined;
12
18
  responseHeaders?: Dictionary<string> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneuptime/common",
3
- "version": "7.0.2478",
3
+ "version": "7.0.2482",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {