@oneuptime/common 7.0.2354 → 7.0.2358
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,4 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import Dictionary from '../../Dictionary';
|
|
2
|
+
|
|
3
|
+
export type Screenshot = string; // base 64 encoded screenshots
|
|
4
|
+
|
|
5
|
+
type Screenshots = Dictionary<Screenshot>;
|
|
6
|
+
|
|
7
|
+
export default Screenshots;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import CustomCodeMonitorResponse from '../CustomCodeMonitor/CustomCodeMonitorResponse';
|
|
2
2
|
import BrowserType from './BrowserType';
|
|
3
3
|
import ScreenSizeType from './ScreenSizeType';
|
|
4
|
-
import
|
|
4
|
+
import Screenshots from './Screenshot';
|
|
5
5
|
|
|
6
6
|
export default interface SyntheticMonitorResponse
|
|
7
7
|
extends CustomCodeMonitorResponse {
|
|
8
|
-
screenshots?:
|
|
8
|
+
screenshots?: Screenshots | undefined; // base 64 encoded screenshots
|
|
9
9
|
browserType: BrowserType;
|
|
10
10
|
screenSizeType: ScreenSizeType;
|
|
11
11
|
}
|