@alwaysmeticulous/api 2.169.0 → 2.172.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.
@@ -23,6 +23,12 @@ export interface InitialNavigationDivergenceIndicator {
23
23
  }
24
24
  export interface DivergenceConsoleError {
25
25
  idx: number;
26
+ /**
27
+ * Truncated to the first 50 characters to avoid sending large payloads
28
+ *
29
+ * Not present in divergences prior to Nov 15, 2024
30
+ */
31
+ truncatedMessage?: string;
26
32
  numHeadAppearances: number;
27
33
  numBaseAppearances: number;
28
34
  }
@@ -134,8 +134,17 @@ export type IDBObjectStoreWithEntries = Omit<IDBObjectStoreMetadata, "serialize"
134
134
  value: string;
135
135
  }[];
136
136
  };
137
+ export type CustomUserEvent = {
138
+ type: string;
139
+ /**
140
+ * The timestamp based on performance.now() in the browser when the event was recorded.
141
+ */
142
+ timestamp: number;
143
+ data: string;
144
+ };
137
145
  export type CustomData = {
138
146
  singletons: Record<string, string>;
139
147
  arrays: Record<string, string[]>;
148
+ events: CustomUserEvent[];
140
149
  };
141
150
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.169.0",
3
+ "version": "2.172.0",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "26ec904d92e9fcd4481a1e5d21b3d4c05ecdb588"
38
+ "gitHead": "24e2059b89347c3f07ea38c9aa32973ac15f9a48"
39
39
  }