@alwaysmeticulous/api 2.185.0 → 2.185.1

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.
@@ -129,7 +129,7 @@ interface StringKey {
129
129
  type: "string";
130
130
  serializedKey: string;
131
131
  }
132
- export type IDBObjectStoreSnapshot = Omit<IDBObjectStoreMetadata, "serialize" | "deserialize"> & {
132
+ export type IDBObjectStoreSnapshot = Pick<IDBObjectStoreMetadata, "databaseName" | "objectStoreName"> & {
133
133
  createObjectStoreOptions: IDBObjectStoreParameters;
134
134
  /**
135
135
  * Entry values are JSON stringified by default. JSON representable objects, arrays and primitives are supported.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.185.0",
3
+ "version": "2.185.1",
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": "d81b8c34c2cfe56ebcfc46ea6fd4efd699f77dc6"
38
+ "gitHead": "31fd9518a85bb75e2a5fcb2b108a9d8d177eb087"
39
39
  }