@@ -122,7 +122,7 @@ export type CommonOptions = {
122122 * Set to `true` to store session data in a cookie instead.
123123 * This can help with compliance for cookie-consent regulation.
124124 */
125- sessionCookie ?: true
125+ sessionCookie ?: boolean
126126 /**
127127 * Specifies if Highlight should not automatically initialize when the class is created.
128128 * This should be used with `.start()` and `.stop()` if you want to control when Highlight records.
@@ -166,12 +166,6 @@ export type HighlightOptions = CommonOptions & {
166166 * @example tracingOrigins: ['localhost', /^\//, 'backend.myapp.com']
167167 */
168168 tracingOrigins ?: boolean | ( string | RegExp ) [ ]
169- /**
170- * Specifies if Highlight should not automatically start recording when the app starts.
171- * This should be used with `H.start()` and `H.stop()` if you want to control when Highlight records.
172- * @default false
173- */
174- manualStart ?: boolean
175169 /**
176170 * This disables recording network requests.
177171 * The data includes the URLs, the size of the request, and how long the request took.
@@ -296,19 +290,6 @@ export type HighlightOptions = CommonOptions & {
296290 * @see {@link https://docs.highlight.run/session-shortcut } for more information.
297291 */
298292 sessionShortcut ?: SessionShortcutOptions
299- /**
300- * Set to `sessionStorage` to bypass all `window.localStorage` usage.
301- * This can help with compliance for cookie-consent regulation.
302- * Using `sessionStorage` will cause app close+reopens to start a new highlight session,
303- * as the session ID will not persist.
304- */
305- storageMode ?: 'sessionStorage' | 'localStorage'
306- /**
307- * By default, session data is stored in the `sessionStorage` of the browser.
308- * Set to `true` to store session data in a cookie instead.
309- * This can help with compliance for cookie-consent regulation.
310- */
311- sessionCookie ?: true
312293 /**
313294 * By default, data is serialized and send by the Web Worker. Set to `local` to force
314295 * sending from the main js thread. Only use `local` for custom environments where Web Workers
0 commit comments