@zerohash-sdk/crypto-buy-js 1.6.2 → 1.8.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -7,6 +7,8 @@
7
7
  * @packageDocumentation
8
8
  */
9
9
 
10
+ import { CryptoBuyFilters } from '@zerohash-sdk/crypto-buy';
11
+
10
12
  /**
11
13
  * Generic app event structure
12
14
  * @template TType - Event type string
@@ -402,12 +404,15 @@ declare type CryptoBuyCompletedData = {
402
404
  };
403
405
 
404
406
  export declare interface CryptoBuyConfig extends BaseConfig<CryptoBuyEvent>, CryptoBuyCallbacks {
407
+ filters?: CryptoBuyFilters;
405
408
  }
406
409
 
407
410
  declare type CryptoBuyEvent = AppEvent<CryptoBuyEventType>;
408
411
 
409
412
  declare type CryptoBuyEventType = string;
410
413
 
414
+ export { CryptoBuyFilters }
415
+
411
416
  /**
412
417
  * Deposit completed payload — emitted by SDKs that drive a deposit through
413
418
  * the integrations flow. Lives on `CommonCallbacks` because both Auth and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zerohash-sdk/crypto-buy-js",
3
- "version": "1.6.2",
3
+ "version": "1.8.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",