@alwaysmeticulous/sdk-bundles-api 2.244.0 → 2.244.2

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.
@@ -8,6 +8,8 @@ export interface MeticulousWindowConfig {
8
8
  METICULOUS_IS_PRODUCTION_ENVIRONMENT?: boolean;
9
9
  METICULOUS_NETWORK_RESPONSE_SANITIZERS?: NetworkResponseSanitizer[];
10
10
  METICULOUS_RECORDER_MIDDLEWARE_V1: RecorderMiddleware[];
11
+ METICULOUS_DISABLE_ERROR_REPORTING?: boolean;
12
+ METICULOUS_DISABLE_TRACKER_ID?: boolean;
11
13
  }
12
14
  /**
13
15
  * Allows sanitizing network responses before they are sent to Meticulous's servers.
@@ -138,9 +138,10 @@ export interface MeticulousPublicReplayApi {
138
138
  */
139
139
  branchName: string | null;
140
140
  /**
141
- * The commit date in ISO 8601 format (e.g., "2025-01-15T10:30:00Z")
141
+ * The commit date in ISO 8601 format (e.g., "2025-01-15T10:30:00Z").
142
+ * If the commit date is unknown, this is null.
142
143
  */
143
- date: string;
144
+ date: string | null;
144
145
  } | undefined;
145
146
  /**
146
147
  * Information about the session being replayed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.244.0",
3
+ "version": "2.244.2",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "ecc638105376f95d4111a364c2ce32500057ae18"
41
+ "gitHead": "fa9d4d6a712fed93f0db6dda38545c9c338f8c68"
42
42
  }