@alwaysmeticulous/api 2.171.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.
@@ -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.171.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": "7ee0cece08afd7373f57e808098b7a8e73172c7c"
38
+ "gitHead": "24e2059b89347c3f07ea38c9aa32973ac15f9a48"
39
39
  }