zh-web-sdk 2.7.0 → 2.7.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.
package/dist/types.d.ts CHANGED
@@ -309,7 +309,7 @@ export interface Filters {
309
309
  export interface IOpenModalParameters {
310
310
  jwt?: string;
311
311
  appIdentifier: AppIdentifier;
312
- filters: Filters;
312
+ filters?: Filters;
313
313
  }
314
314
  export interface ISetFiltersParameters {
315
315
  appIdentifier: AppIdentifier;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zh-web-sdk",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "private": false,
5
5
  "description": "ZeroHash Web SDK",
6
6
  "homepage": "https://github.com/seedcx/zh-web-sdk",
package/src/types.ts CHANGED
@@ -335,7 +335,7 @@ export interface Filters {
335
335
  export interface IOpenModalParameters {
336
336
  jwt?: string;
337
337
  appIdentifier: AppIdentifier;
338
- filters: Filters;
338
+ filters?: Filters;
339
339
  }
340
340
 
341
341
  export interface ISetFiltersParameters {