@alwaysmeticulous/sdk-bundles-api 2.166.0 → 2.168.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.
- package/dist/record/middleware.d.ts +12 -2
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Cookie, HarRequest, HarResponse,
|
|
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,17 @@ export interface RecorderMiddleware {
|
|
|
127
127
|
export interface IndexedDBStoreEntries {
|
|
128
128
|
databaseName: string;
|
|
129
129
|
objectStoreName: string;
|
|
130
|
-
entries:
|
|
130
|
+
entries: {
|
|
131
|
+
/**
|
|
132
|
+
* Note if you don't set explicit keys, and instead use 'keyPath' when constructing your store then
|
|
133
|
+
* the key passed here will be undefined: you'll need to retrieve your key from the value.
|
|
134
|
+
*/
|
|
135
|
+
key?: IDBValidKey;
|
|
136
|
+
/**
|
|
137
|
+
* The value stored in IDB. For most IDB use cases this is normally a JSON string.
|
|
138
|
+
*/
|
|
139
|
+
value: unknown;
|
|
140
|
+
}[];
|
|
131
141
|
}
|
|
132
142
|
export interface NetworkRequestMetadata {
|
|
133
143
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.168.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": "
|
|
49
|
+
"gitHead": "2bf6c8d8b07b3f685da11a4ad4b33b81b3dd07ac"
|
|
50
50
|
}
|