@alwaysmeticulous/sdk-bundles-api 2.285.2 → 2.287.0

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.
@@ -187,6 +187,27 @@ export interface MeticulousPublicReplayApi {
187
187
  */
188
188
  id: string;
189
189
  };
190
+ /**
191
+ * Information about the browser that is running the replay.
192
+ *
193
+ * Useful for tagging the metrics you collect via {@link native} (heap
194
+ * usage, rendering time, JavaScript execution time, ...) with the
195
+ * Chrome/Chromium build that produced them. Different Chrome versions
196
+ * can have noticeably different rendering and JS performance
197
+ * characteristics, so aggregating across versions can mask real
198
+ * regressions.
199
+ */
200
+ browser: {
201
+ /**
202
+ * The Chrome/Chromium version that is running the replay, e.g.
203
+ * `"139.0.7258.5"`. The leading product label (`"Chrome/"`,
204
+ * `"HeadlessChrome/"`, ...) from `Browser.version()` is stripped, so
205
+ * the value can be parsed directly as a dotted version number. Falls
206
+ * back to `"unknown"` only in the very rare case that the replay
207
+ * runner could not read the version from the underlying browser.
208
+ */
209
+ version: string;
210
+ };
190
211
  }
191
212
  export interface MeticulousPublicRecordApi {
192
213
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.285.2",
3
+ "version": "2.287.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,7 @@
9
9
  "dist"
10
10
  ],
11
11
  "dependencies": {
12
- "@alwaysmeticulous/api": "2.285.2"
12
+ "@alwaysmeticulous/api": "2.286.0"
13
13
  },
14
14
  "author": {
15
15
  "name": "The Meticulous Team",