@alwaysmeticulous/sdk-bundles-api 2.166.0 → 2.167.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.
@@ -1,4 +1,4 @@
1
- import { Cookie, HarRequest, HarResponse, IDBObjectStoreWithEntries, StorageEntry, WebSocketConnectionData } from "@alwaysmeticulous/api";
1
+ import { Cookie, HarRequest, HarResponse, StorageEntry, WebSocketConnectionData } from "@alwaysmeticulous/api";
2
2
  /**
3
3
  * Transformations that are applied to a recorder payload before it is sent to Meticulous's servers. This is
4
4
  * useful for redacting sensitive information from the payload before it is sent.
@@ -127,7 +127,13 @@ export interface RecorderMiddleware {
127
127
  export interface IndexedDBStoreEntries {
128
128
  databaseName: string;
129
129
  objectStoreName: string;
130
- entries: IDBObjectStoreWithEntries["entries"];
130
+ entries: {
131
+ key?: IDBValidKey;
132
+ /**
133
+ * The value stored in IDB. For most IDB use cases this is normally a JSON string.
134
+ */
135
+ value: unknown;
136
+ }[];
131
137
  }
132
138
  export interface NetworkRequestMetadata {
133
139
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.166.0",
3
+ "version": "2.167.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -46,5 +46,5 @@
46
46
  "bugs": {
47
47
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
48
48
  },
49
- "gitHead": "9f9d36e28324174a38c5992d803c725c66b9f1c2"
49
+ "gitHead": "c66bfb76e7cc3774adfec92ee5ed695d54ffee0a"
50
50
  }